diff options
Diffstat (limited to 'kasteroids/toplevel.cpp')
-rw-r--r-- | kasteroids/toplevel.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kasteroids/toplevel.cpp b/kasteroids/toplevel.cpp index 3cbc4dfa..5cd48ed5 100644 --- a/kasteroids/toplevel.cpp +++ b/kasteroids/toplevel.cpp @@ -484,7 +484,7 @@ void KAstTopLevel::slotNewGame() view->setRockSpeed( levels[0].rockSpeed ); view->addRocks( levels[0].nrocks ); view->showText( i18n( "Press %1 to launch." ) - .tqarg(launchAction->shortcut().seq(0).toString()), + .arg(launchAction->shortcut().seq(0).toString()), yellow ); waitShip = true; gameOver = false; @@ -509,7 +509,7 @@ void KAstTopLevel::slotShipKilled() { waitShip = true; view->showText( i18n( "Ship Destroyed. Press %1 to launch.") - .tqarg(launchAction->shortcut().seq(0).toString()), + .arg(launchAction->shortcut().seq(0).toString()), yellow ); } else @@ -577,7 +577,7 @@ void KAstTopLevel::slotKeyConfig() { KKeyDialog::configure( actionCollection(), this ); if ( waitShip ) view->showText( i18n( "Press %1 to launch." ) - .tqarg(launchAction->shortcut().seq(0).toString()), + .arg(launchAction->shortcut().seq(0).toString()), yellow, false ); } @@ -637,9 +637,9 @@ void KAstTopLevel::doStats() " Hit:\t%2\n" " Missed:\t%3\n" "Hit ratio:\t%4 %\t\t") - .tqarg(view->shots()).tqarg(view->hits()) - .tqarg(view->shots() - view->hits()) - .tqarg(r); + .arg(view->shots()).arg(view->hits()) + .arg(view->shots() - view->hits()) + .arg(r); view->showText( s, green, FALSE ); } |