[wpdev-commits] wolfpack/python global.cpp,1.89,1.90
Brought to you by:
rip,
thiagocorrea
|
From: <dar...@us...> - 2003-09-11 12:22:56
|
Update of /cvsroot/wpdev/wolfpack/python
In directory sc8-pr-cvs1:/tmp/cvs-serv15450/python
Modified Files:
global.cpp
Log Message:
Removed references to STL strings and iostreams.
Index: global.cpp
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/python/global.cpp,v
retrieving revision 1.89
retrieving revision 1.90
diff -C2 -d -r1.89 -r1.90
*** global.cpp 9 Sep 2003 23:09:31 -0000 1.89
--- global.cpp 11 Sep 2003 12:22:25 -0000 1.90
***************
*** 31,34 ****
--- 31,35 ----
#include "engine.h"
+ #include "../basics.h"
#include "../globals.h"
#include "../network/uosocket.h"
***************
*** 58,62 ****
#include "../npc.h"
#include "../targetrequests.h"
- #include "../utilsys.h"
#include "../basedef.h"
--- 59,62 ----
***************
*** 848,852 ****
Q_UNUSED(args);
wp_version_info wpversioninfo;
! return PyString_FromString( QString("%1 %2 %3").arg( wpversioninfo.productstring.c_str() ).arg( wpversioninfo.betareleasestring.c_str() ).arg( wpversioninfo.verstring.c_str() ).latin1() );
}
--- 848,852 ----
Q_UNUSED(args);
wp_version_info wpversioninfo;
! return PyString_FromString( QString("%1 %2 %3").arg( wpversioninfo.productstring ).arg( wpversioninfo.betareleasestring ).arg( wpversioninfo.verstring ).latin1() );
}
|