Update of /cvsroot/wpdev/wolfpack/unix
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32276
Modified Files:
console_unix.cpp
Log Message:
warning fix
Index: console_unix.cpp
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/unix/console_unix.cpp,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** console_unix.cpp 2 Jun 2004 15:04:11 -0000 1.10
--- console_unix.cpp 15 Jul 2004 02:23:50 -0000 1.11
***************
*** 188,191 ****
--- 188,192 ----
void cConsole::setConsoleTitle( const QString& data )
{
+ Q_UNUSED(data);
}
***************
*** 231,235 ****
QString temp = progress;
progress = QString::null;
! for ( int i = 0; i < temp.length() + 4; ++i )
{
fprintf( stdout, "\b" );
--- 232,236 ----
QString temp = progress;
progress = QString::null;
! for ( uint i = 0; i < temp.length() + 4; ++i )
{
fprintf( stdout, "\b" );
***************
*** 268,274 ****
--- 269,281 ----
void cConsole::setAttributes( bool bold, bool italic, bool, unsigned char r, unsigned char g, unsigned char b, unsigned char, enFontType )
{
+ Q_UNUSED(bold);
+ Q_UNUSED(italic);
+ Q_UNUSED(r);
+ Q_UNUSED(g);
+ Q_UNUSED(b);
}
void cConsole::notifyServerState( enServerState newstate )
{
+ Q_UNUSED(newstate);
}
|