[wpdev-commits] wolfpack/python item.cpp,1.139,1.140
Brought to you by:
rip,
thiagocorrea
From: Sebastian H. <dar...@us...> - 2004-10-29 23:44:20
|
Update of /cvsroot/wpdev/wolfpack/python In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20446/python Modified Files: item.cpp Log Message: Source Updates for Player vendors. Index: item.cpp =================================================================== RCS file: /cvsroot/wpdev/wolfpack/python/item.cpp,v retrieving revision 1.139 retrieving revision 1.140 diff -C2 -d -r1.139 -r1.140 *** item.cpp 17 Oct 2004 01:20:20 -0000 1.139 --- item.cpp 29 Oct 2004 23:44:05 -0000 1.140 *************** *** 317,320 **** --- 317,321 ---- \param color Defaults to 0. The color of the object to consume + \return How many items have not been deleted. */ static PyObject* wpItem_useresource( wpItem* self, PyObject* args ) *************** *** 681,685 **** QString name = self->pItem->getName( true ); ! return PyString_FromString( name.latin1() ); } --- 682,686 ---- QString name = self->pItem->getName( true ); ! return QString2Python( name ); } |