Update of /cvsroot/wpdev/wolfpack
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30370
Modified Files:
ChangeLog commands.cpp
Log Message:
Fixed UCS4 problems.
Index: ChangeLog
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/ChangeLog,v
retrieving revision 1.90
retrieving revision 1.91
diff -C2 -d -r1.90 -r1.91
*** ChangeLog 1 Oct 2004 19:43:56 -0000 1.90
--- ChangeLog 1 Oct 2004 23:26:37 -0000 1.91
***************
*** 18,21 ****
--- 18,23 ----
- Allowed global teleporter tags.
- Static tile color can now be retrieved via wolfpack.statics()
+ - Only 100 spawnregions per cycle are respawned now.
+ - Fixed even more UCS4 problems.
Wolfpack 12.9.11 Beta (26. September 2004)
Index: commands.cpp
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/commands.cpp,v
retrieving revision 1.263
retrieving revision 1.264
diff -C2 -d -r1.263 -r1.264
*** commands.cpp 25 Sep 2004 02:03:19 -0000 1.263
--- commands.cpp 1 Oct 2004 23:26:37 -0000 1.264
***************
*** 96,103 ****
QString argString = arguments.join( " " );
! if ( argString.isNull() )
! argString = "";
!
! PyObject* args = Py_BuildValue( "O&uu", PyGetSocketObject, socket, command.ucs2(), argString.ucs2() );
PyObject* result = PyObject_CallObject( function, args );
--- 96,100 ----
QString argString = arguments.join( " " );
! PyObject* args = Py_BuildValue( "O&NN", PyGetSocketObject, socket, QString2Python(command), QString2Python(argString) );
PyObject* result = PyObject_CallObject( function, args );
|