aboutsummaryrefslogtreecommitdiff
path: root/src/viewdefault.cpp
diff options
context:
space:
mode:
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();