aboutsummaryrefslogtreecommitdiff
path: root/src/viewdefault.cpp
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2010-05-16 05:19:48 +0000
committerMike Buland <eichlan@xagasoft.com>2010-05-16 05:19:48 +0000
commitd66465a69fdc7922fa372e80cfae23e2fe3a6396 (patch)
tree6127aa0e5c300a5ae7aa22c1195002ca46490589 /src/viewdefault.cpp
parenta2c615fe781cc64a4603d6ba198ea4fd91b36c8d (diff)
downloadbuild-d66465a69fdc7922fa372e80cfae23e2fe3a6396.tar.gz
build-d66465a69fdc7922fa372e80cfae23e2fe3a6396.tar.bz2
build-d66465a69fdc7922fa372e80cfae23e2fe3a6396.tar.xz
build-d66465a69fdc7922fa372e80cfae23e2fe3a6396.zip
Works with the minor changes that have happened to libbu++, it's ready for new
features and fixes :)
Diffstat (limited to 'src/viewdefault.cpp')
-rw-r--r--src/viewdefault.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/viewdefault.cpp b/src/viewdefault.cpp
index df7be13..fdc1604 100644
--- a/src/viewdefault.cpp
+++ b/src/viewdefault.cpp
@@ -131,7 +131,7 @@ void ViewDefault::cmdStarted( const Bu::FString &/*sCmd*/ )
131void ViewDefault::cmdFinished( const Bu::FString &sStdOut, 131void ViewDefault::cmdFinished( const Bu::FString &sStdOut,
132 const Bu::FString &sStdErr, long /*iExit*/ ) 132 const Bu::FString &sStdErr, long /*iExit*/ )
133{ 133{
134 if( sStdOut ) 134 if( sStdOut.isSet() )
135 { 135 {
136 Bu::FString::const_iterator b; 136 Bu::FString::const_iterator b;
137 b = sStdOut.begin(); 137 b = sStdOut.begin();
@@ -147,7 +147,7 @@ void ViewDefault::cmdFinished( const Bu::FString &sStdOut,
147 } 147 }
148 sio << C_BR_GREEN << "\\-----" << C_RESET << sio.nl; 148 sio << C_BR_GREEN << "\\-----" << C_RESET << sio.nl;
149 } 149 }
150 if( sStdErr ) 150 if( sStdErr.isSet() )
151 { 151 {
152 Bu::FString::const_iterator b; 152 Bu::FString::const_iterator b;
153 b = sStdErr.begin(); 153 b = sStdErr.begin();