summaryrefslogtreecommitdiffstats
path: root/knights/knights.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:37:27 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:37:27 -0600
commita19492b5502371785de5749c2b12bbdbd012fc7a (patch)
tree8cbd3737894d9df68134a8308357e5f869c2beab /knights/knights.cpp
parentdd4501d85d9c879f7322c74c6f37cfb0e813e1bb (diff)
downloadknights-a19492b5502371785de5749c2b12bbdbd012fc7a.tar.gz
knights-a19492b5502371785de5749c2b12bbdbd012fc7a.zip
Remove additional unneeded tq method conversions
Diffstat (limited to 'knights/knights.cpp')
-rw-r--r--knights/knights.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/knights/knights.cpp b/knights/knights.cpp
index 3271773..a82895a 100644
--- a/knights/knights.cpp
+++ b/knights/knights.cpp
@@ -561,29 +561,29 @@ void Knights::setStatusBar( const int &ID, const TQString &MSG )
case BOOK_ERROR_1:
Message->setText( i18n( "Error with white engine" ) );
KMessageBox::sorry( this,
- i18n("You selected %1 to play white,\nbut it can only be used as a book engine.\nPlease select another engine to play white.").tqarg( MSG ),
+ i18n("You selected %1 to play white,\nbut it can only be used as a book engine.\nPlease select another engine to play white.").arg( MSG ),
i18n("White Engine Problem") );
break;
case BOOK_ERROR_2:
Message->setText( i18n( "Error with white book engine" ) );
KMessageBox::sorry( this,
- i18n("You selected %1 to play white's book,\nbut it can only be used as a regular engine.\nPlease select another engine to play white's book.").tqarg( MSG ),
+ i18n("You selected %1 to play white's book,\nbut it can only be used as a regular engine.\nPlease select another engine to play white's book.").arg( MSG ),
i18n("White Book Engine Problem") );
break;
case BOOK_ERROR_3:
Message->setText( i18n( "Error with black engine" ) );
KMessageBox::sorry( this,
- i18n("You selected %1 to play black,\nbut it can only be used as a book engine.\nPlease select another engine to play black.").tqarg( MSG ),
+ i18n("You selected %1 to play black,\nbut it can only be used as a book engine.\nPlease select another engine to play black.").arg( MSG ),
i18n("Black Engine Problem") );
break;
case BOOK_ERROR_4:
Message->setText( i18n( "Error with black book engine" ) );
KMessageBox::sorry( this,
- i18n("You selected %1 to play black's book,\nbut it can only be used as a regular engine.\nPlease select another engine to play black's book.").tqarg( MSG ),
+ i18n("You selected %1 to play black's book,\nbut it can only be used as a regular engine.\nPlease select another engine to play black's book.").arg( MSG ),
i18n("Black Book Engine Problem") );
break;
case ENGINE_DIED_ERROR:
- Message->setText( i18n( "The computer opponent assigned to play %1 has crashed" ).tqarg( MSG ) );
+ Message->setText( i18n( "The computer opponent assigned to play %1 has crashed" ).arg( MSG ) );
break;
case LOAD_ERROR:
Message->setText( i18n( "There was an error while loading the file" ) );
@@ -1017,7 +1017,7 @@ void Knights::installThemes( void )
if( installError )
{
KMessageBox::sorry( this,
- i18n("The theme could not be installed:\n%1").tqarg( allerror ),
+ i18n("The theme could not be installed:\n%1").arg( allerror ),
i18n("Can not install theme") );
}
return;