diff options
| author | Mike Buland <eichlan@xagasoft.com> | 2011-01-20 18:21:03 +0000 |
|---|---|---|
| committer | Mike Buland <eichlan@xagasoft.com> | 2011-01-20 18:21:03 +0000 |
| commit | c435c7daa9df1b08dc85132fcd1c154bea9b69e2 (patch) | |
| tree | 5537f3c91a67b35c4c8aa918b708b7e4aad8f146 /src/viewmake.cpp | |
| parent | 59690513123de8904eef2a03fe7fcaaed98b1b7b (diff) | |
| download | build-c435c7daa9df1b08dc85132fcd1c154bea9b69e2.tar.gz build-c435c7daa9df1b08dc85132fcd1c154bea9b69e2.tar.bz2 build-c435c7daa9df1b08dc85132fcd1c154bea9b69e2.tar.xz build-c435c7daa9df1b08dc85132fcd1c154bea9b69e2.zip | |
Fixes to use libbu++ Bu::String
Diffstat (limited to 'src/viewmake.cpp')
| -rw-r--r-- | src/viewmake.cpp | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/viewmake.cpp b/src/viewmake.cpp index 39d1327..14f5526 100644 --- a/src/viewmake.cpp +++ b/src/viewmake.cpp | |||
| @@ -17,7 +17,7 @@ ViewMake::~ViewMake() | |||
| 17 | { | 17 | { |
| 18 | } | 18 | } |
| 19 | 19 | ||
| 20 | void ViewMake::beginAction( const Bu::FString &/*sAction*/ ) | 20 | void ViewMake::beginAction( const Bu::String &/*sAction*/ ) |
| 21 | { | 21 | { |
| 22 | } | 22 | } |
| 23 | 23 | ||
| @@ -25,17 +25,17 @@ void ViewMake::endAction() | |||
| 25 | { | 25 | { |
| 26 | } | 26 | } |
| 27 | 27 | ||
| 28 | void ViewMake::skipTarget( const Bu::FString &/*sProfile*/, | 28 | void ViewMake::skipTarget( const Bu::String &/*sProfile*/, |
| 29 | const Target &/*rTarget*/ ) | 29 | const Target &/*rTarget*/ ) |
| 30 | { | 30 | { |
| 31 | } | 31 | } |
| 32 | 32 | ||
| 33 | void ViewMake::beginTarget( const Bu::FString &/*sProfile*/, | 33 | void ViewMake::beginTarget( const Bu::String &/*sProfile*/, |
| 34 | const Target &/*rTarget*/ ) | 34 | const Target &/*rTarget*/ ) |
| 35 | { | 35 | { |
| 36 | } | 36 | } |
| 37 | 37 | ||
| 38 | void ViewMake::processTarget( const Bu::FString &/*sProfile*/, | 38 | void ViewMake::processTarget( const Bu::String &/*sProfile*/, |
| 39 | const Target &/*rTarget*/ ) | 39 | const Target &/*rTarget*/ ) |
| 40 | { | 40 | { |
| 41 | } | 41 | } |
| @@ -48,38 +48,38 @@ void ViewMake::buildRequires( const Target &/*rTarget*/ ) | |||
| 48 | { | 48 | { |
| 49 | } | 49 | } |
| 50 | 50 | ||
| 51 | void ViewMake::cmdStarted( const Bu::FString &sCmd ) | 51 | void ViewMake::cmdStarted( const Bu::String &sCmd ) |
| 52 | { | 52 | { |
| 53 | sio << sCmd << sio.nl; | 53 | sio << sCmd << sio.nl; |
| 54 | } | 54 | } |
| 55 | 55 | ||
| 56 | void ViewMake::cmdFinished( const Bu::FString &sStdOut, | 56 | void ViewMake::cmdFinished( const Bu::String &sStdOut, |
| 57 | const Bu::FString &sStdErr, long /*iExit*/ ) | 57 | const Bu::String &sStdErr, long /*iExit*/ ) |
| 58 | { | 58 | { |
| 59 | sio << sStdOut << sStdErr; | 59 | sio << sStdOut << sStdErr; |
| 60 | } | 60 | } |
| 61 | 61 | ||
| 62 | void ViewMake::userError( const Bu::FString &sMsg ) | 62 | void ViewMake::userError( const Bu::String &sMsg ) |
| 63 | { | 63 | { |
| 64 | sio << "Error: " << sMsg << sio.nl; | 64 | sio << "Error: " << sMsg << sio.nl; |
| 65 | } | 65 | } |
| 66 | 66 | ||
| 67 | void ViewMake::userWarning( const Bu::FString &sMsg ) | 67 | void ViewMake::userWarning( const Bu::String &sMsg ) |
| 68 | { | 68 | { |
| 69 | sio << "Warning: " << sMsg << sio.nl; | 69 | sio << "Warning: " << sMsg << sio.nl; |
| 70 | } | 70 | } |
| 71 | 71 | ||
| 72 | void ViewMake::userNotice( const Bu::FString &sMsg ) | 72 | void ViewMake::userNotice( const Bu::String &sMsg ) |
| 73 | { | 73 | { |
| 74 | sio << "Notice: " << sMsg << sio.nl; | 74 | sio << "Notice: " << sMsg << sio.nl; |
| 75 | } | 75 | } |
| 76 | 76 | ||
| 77 | void ViewMake::sysError( const Bu::FString &sMsg ) | 77 | void ViewMake::sysError( const Bu::String &sMsg ) |
| 78 | { | 78 | { |
| 79 | sio << sMsg << sio.nl; | 79 | sio << sMsg << sio.nl; |
| 80 | } | 80 | } |
| 81 | 81 | ||
| 82 | void ViewMake::sysWarning( const Bu::FString &sMsg ) | 82 | void ViewMake::sysWarning( const Bu::String &sMsg ) |
| 83 | { | 83 | { |
| 84 | sio << sMsg << sio.nl; | 84 | sio << sMsg << sio.nl; |
| 85 | } | 85 | } |
