Update of /cvsroot/wpdev/wolfpack
In directory sc8-pr-cvs1:/tmp/cvs-serv5586
Modified Files:
commands.cpp
Log Message:
Reordered command logging.
Index: commands.cpp
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/commands.cpp,v
retrieving revision 1.204
retrieving revision 1.205
diff -C2 -d -r1.204 -r1.205
*** commands.cpp 19 Sep 2003 20:41:08 -0000 1.204
--- commands.cpp 20 Sep 2003 02:15:09 -0000 1.205
***************
*** 85,90 ****
// Dispatch the command
- dispatch( socket, pCommand, pArgs );
socket->log( QString( "Used command '%1'.\n" ).arg( command ) );
}
--- 85,90 ----
// Dispatch the command
socket->log( QString( "Used command '%1'.\n" ).arg( command ) );
+ dispatch( socket, pCommand, pArgs );
}
|