Update of /cvsroot/wpdev/wolfpack/python
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27002/python
Modified Files:
engine.cpp gump.h socket.cpp target.h tempeffect.h
Log Message:
QT_CLEAN_NAMESPACE
Index: engine.cpp
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/python/engine.cpp,v
retrieving revision 1.34
retrieving revision 1.35
diff -C2 -d -r1.34 -r1.35
*** engine.cpp 10 Aug 2004 03:27:52 -0000 1.34
--- engine.cpp 19 Aug 2004 01:59:16 -0000 1.35
***************
*** 159,163 ****
PyObject* mList = PyDict_Items( modules );
! for ( INT32 i = 0; i < PyList_Size( mList ); ++i )
{
PyObject* m = PyImport_ReloadModule( PyList_GetItem( mList, i ) );
--- 159,163 ----
PyObject* mList = PyDict_Items( modules );
! for ( Q_INT32 i = 0; i < PyList_Size( mList ); ++i )
{
PyObject* m = PyImport_ReloadModule( PyList_GetItem( mList, i ) );
Index: tempeffect.h
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/python/tempeffect.h,v
retrieving revision 1.26
retrieving revision 1.27
diff -C2 -d -r1.26 -r1.27
*** tempeffect.h 17 Aug 2004 00:22:25 -0000 1.26
--- tempeffect.h 19 Aug 2004 01:59:16 -0000 1.27
***************
*** 98,102 ****
{
// Find the last dot
! INT32 position = dispelFunc_.findRev( "." );
QString sModule = dispelFunc_.left( position );
QString sFunction = dispelFunc_.right( dispelFunc_.length() - ( position + 1 ) );
--- 98,102 ----
{
// Find the last dot
! Q_INT32 position = dispelFunc_.findRev( "." );
QString sModule = dispelFunc_.left( position );
QString sFunction = dispelFunc_.right( dispelFunc_.length() - ( position + 1 ) );
***************
*** 146,150 ****
{
// Find the last dot
! INT32 position = functionName.findRev( "." );
QString sModule = functionName.left( position );
QString sFunction = functionName.right( functionName.length() - ( position + 1 ) );
--- 146,150 ----
{
// Find the last dot
! Q_INT32 position = functionName.findRev( "." );
QString sModule = functionName.left( position );
QString sFunction = functionName.right( functionName.length() - ( position + 1 ) );
Index: socket.cpp
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/python/socket.cpp,v
retrieving revision 1.81
retrieving revision 1.82
diff -C2 -d -r1.81 -r1.82
*** socket.cpp 10 Aug 2004 03:27:54 -0000 1.81
--- socket.cpp 19 Aug 2004 01:59:16 -0000 1.82
***************
*** 410,414 ****
gump->setNoDispose( nodispose );
! INT32 i;
for ( i = 0; i < PyList_Size( layout ); ++i )
{
--- 410,414 ----
gump->setNoDispose( nodispose );
! Q_INT32 i;
for ( i = 0; i < PyList_Size( layout ); ++i )
{
Index: target.h
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/python/target.h,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -d -r1.19 -r1.20
*** target.h 19 Aug 2004 01:55:58 -0000 1.19
--- target.h 19 Aug 2004 01:59:16 -0000 1.20
***************
*** 137,141 ****
{
// Find the last dot
! INT32 position = responsefunc.findRev( "." );
QString sModule = responsefunc.left( position );
QString sFunction = responsefunc.right( responsefunc.length() - ( position + 1 ) );
--- 137,141 ----
{
// Find the last dot
! Q_INT32 position = responsefunc.findRev( "." );
QString sModule = responsefunc.left( position );
QString sFunction = responsefunc.right( responsefunc.length() - ( position + 1 ) );
***************
*** 175,179 ****
{
// Find the last dot
! INT32 position = timeoutfunc.findRev( "." );
QString sModule = timeoutfunc.left( position );
QString sFunction = timeoutfunc.right( timeoutfunc.length() - ( position + 1 ) );
--- 175,179 ----
{
// Find the last dot
! Q_INT32 position = timeoutfunc.findRev( "." );
QString sModule = timeoutfunc.left( position );
QString sFunction = timeoutfunc.right( timeoutfunc.length() - ( position + 1 ) );
***************
*** 210,214 ****
{
// Find the last dot
! INT32 position = cancelfunc.findRev( "." );
QString sModule = cancelfunc.left( position );
QString sFunction = cancelfunc.right( cancelfunc.length() - ( position + 1 ) );
--- 210,214 ----
{
// Find the last dot
! Q_INT32 position = cancelfunc.findRev( "." );
QString sModule = cancelfunc.left( position );
QString sFunction = cancelfunc.right( cancelfunc.length() - ( position + 1 ) );
Index: gump.h
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/python/gump.h,v
retrieving revision 1.22
retrieving revision 1.23
diff -C2 -d -r1.22 -r1.23
*** gump.h 10 Aug 2004 03:27:53 -0000 1.22
--- gump.h 19 Aug 2004 01:59:16 -0000 1.23
***************
*** 143,147 ****
{
// Find the last dot
! INT32 position = callback.findRev( "." );
QString sModule = callback.left( position );
QString sFunction = callback.right( callback.length() - ( position + 1 ) );
--- 143,147 ----
{
// Find the last dot
! Q_INT32 position = callback.findRev( "." );
QString sModule = callback.left( position );
QString sFunction = callback.right( callback.length() - ( position + 1 ) );
|