[wpdev-commits] wolfpack/python global.cpp,1.96,1.97
Brought to you by:
rip,
thiagocorrea
|
From: <dar...@us...> - 2003-10-13 00:11:54
|
Update of /cvsroot/wpdev/wolfpack/python
In directory sc8-pr-cvs1:/tmp/cvs-serv25857/python
Modified Files:
global.cpp
Log Message:
Final Changes to the GUI.
Index: global.cpp
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/python/global.cpp,v
retrieving revision 1.96
retrieving revision 1.97
diff -C2 -d -r1.96 -r1.97
*** global.cpp 8 Oct 2003 01:37:59 -0000 1.96
--- global.cpp 13 Oct 2003 00:11:47 -0000 1.97
***************
*** 1074,1078 ****
}
! static PyObject* wpQueueReload( PyObject* self, PyObject* args )
{
Q_UNUSED(self);
--- 1074,1078 ----
}
! static PyObject* wpQueueAction( PyObject* self, PyObject* args )
{
Q_UNUSED(self);
***************
*** 1080,1087 ****
unsigned int type = 0;
! if( !PyArg_ParseTuple( args, "i:wolfpack.queuereload( type )", &type ) )
return 0;
! queueReload( (eReloadType)type );
return PyInt_FromLong( 1 );
--- 1080,1087 ----
unsigned int type = 0;
! if( !PyArg_ParseTuple( args, "i:wolfpack.queueaction( type )", &type ) )
return 0;
! queueAction( (eActionType)type );
return PyInt_FromLong( 1 );
***************
*** 1135,1139 ****
{ "tickcount", wpTickcount, METH_NOARGS, "Returns the current Tickcount on Windows" },
{ "charbase", wpCharBase, METH_VARARGS, NULL },
! { "queuereload", wpQueueReload, METH_VARARGS, NULL },
{ NULL, NULL, 0, NULL } // Terminator
};
--- 1135,1139 ----
{ "tickcount", wpTickcount, METH_NOARGS, "Returns the current Tickcount on Windows" },
{ "charbase", wpCharBase, METH_VARARGS, NULL },
! { "queueaction", wpQueueAction, METH_VARARGS, NULL },
{ NULL, NULL, 0, NULL } // Terminator
};
|