[wpdev-commits] wolfpack/ai ai.cpp,1.26,1.27
Brought to you by:
rip,
thiagocorrea
From: Correa <thi...@us...> - 2004-08-19 05:28:30
|
Update of /cvsroot/wpdev/wolfpack/ai In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23996/ai Modified Files: ai.cpp Log Message: should now be possible to use UCS4 python Index: ai.cpp =================================================================== RCS file: /cvsroot/wpdev/wolfpack/ai/ai.cpp,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** ai.cpp 19 Aug 2004 01:59:15 -0000 1.26 --- ai.cpp 19 Aug 2004 05:28:21 -0000 1.27 *************** *** 237,241 **** { // Find the last dot ! Q_INT32 position = onspeech.findRev( "." ); QString sModule = onspeech.left( position ); QString sFunction = onspeech.right( onspeech.length() - ( position + 1 ) ); --- 237,241 ---- { // Find the last dot ! int position = onspeech.findRev( "." ); QString sModule = onspeech.left( position ); QString sFunction = onspeech.right( onspeech.length() - ( position + 1 ) ); *************** *** 277,281 **** { // Find the last dot ! Q_INT32 position = precond.findRev( "." ); QString sModule = precond.left( position ); QString sFunction = precond.right( precond.length() - ( position + 1 ) ); --- 277,281 ---- { // Find the last dot ! int position = precond.findRev( "." ); QString sModule = precond.left( position ); QString sFunction = precond.right( precond.length() - ( position + 1 ) ); *************** *** 330,334 **** { // Find the last dot ! Q_INT32 position = postcond.findRev( "." ); QString sModule = postcond.left( position ); QString sFunction = postcond.right( postcond.length() - ( position + 1 ) ); --- 330,334 ---- { // Find the last dot ! int position = postcond.findRev( "." ); QString sModule = postcond.left( position ); QString sFunction = postcond.right( postcond.length() - ( position + 1 ) ); *************** *** 383,387 **** { // Find the last dot ! Q_INT32 position = exec.findRev( "." ); QString sModule = exec.left( position ); QString sFunction = exec.right( exec.length() - ( position + 1 ) ); --- 383,387 ---- { // Find the last dot ! int position = exec.findRev( "." ); QString sModule = exec.left( position ); QString sFunction = exec.right( exec.length() - ( position + 1 ) ); |