[wpdev-commits] wolfpack/unix console_unix.cpp,1.12,1.13
Brought to you by:
rip,
thiagocorrea
From: Sebastian H. <dar...@us...> - 2004-09-04 15:19:52
|
Update of /cvsroot/wpdev/wolfpack/unix In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21422/unix Modified Files: console_unix.cpp Log Message: Fixed bug #0000256 Index: console_unix.cpp =================================================================== RCS file: /cvsroot/wpdev/wolfpack/unix/console_unix.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** console_unix.cpp 10 Aug 2004 03:18:48 -0000 1.12 --- console_unix.cpp 4 Sep 2004 15:19:39 -0000 1.13 *************** *** 227,230 **** --- 227,234 ---- void cConsole::send( const QString& sMessage ) { + if (sMessage.isNull() || sMessage.isEmpty()) { + return; + } + // If a progress message is waiting, remove it. if ( !progress.isEmpty() ) |