Update of /cvsroot/wpdev/wolfpack/ai
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27002/ai
Modified Files:
ai.cpp
Log Message:
QT_CLEAN_NAMESPACE
Index: ai.cpp
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/ai/ai.cpp,v
retrieving revision 1.25
retrieving revision 1.26
diff -C2 -d -r1.25 -r1.26
*** ai.cpp 19 Aug 2004 01:55:56 -0000 1.25
--- ai.cpp 19 Aug 2004 01:59:15 -0000 1.26
***************
*** 237,241 ****
{
// Find the last dot
! INT32 position = onspeech.findRev( "." );
QString sModule = onspeech.left( position );
QString sFunction = onspeech.right( onspeech.length() - ( position + 1 ) );
--- 237,241 ----
{
// Find the last dot
! Q_INT32 position = onspeech.findRev( "." );
QString sModule = onspeech.left( position );
QString sFunction = onspeech.right( onspeech.length() - ( position + 1 ) );
***************
*** 277,281 ****
{
// Find the last dot
! INT32 position = precond.findRev( "." );
QString sModule = precond.left( position );
QString sFunction = precond.right( precond.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 ) );
***************
*** 330,334 ****
{
// Find the last dot
! INT32 position = postcond.findRev( "." );
QString sModule = postcond.left( position );
QString sFunction = postcond.right( postcond.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 ) );
***************
*** 383,387 ****
{
// Find the last dot
! INT32 position = exec.findRev( "." );
QString sModule = exec.left( position );
QString sFunction = exec.right( exec.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 ) );
|