diff options
Diffstat (limited to 'src/systemtray.cpp')
-rw-r--r-- | src/systemtray.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/systemtray.cpp b/src/systemtray.cpp index 6e2f364..118d449 100644 --- a/src/systemtray.cpp +++ b/src/systemtray.cpp @@ -139,7 +139,7 @@ void KSystemTray2::displayCloseMessage(TQString fileMenu) TQString message = i18n( "<p>Closing the main window will keep %1 running in the system tray. " "Use <b>Quit</b> from the <b>Basket</b> menu to quit the application.</p>" - ).tqarg(KGlobal::instance()->aboutData()->programName()); + ).arg(KGlobal::instance()->aboutData()->programName()); // We are sure the systray icon is visible: ouf! if (useSystray) { // Compute size and position of the pixmap to be grabbed: @@ -433,7 +433,7 @@ void SystemTray::updateToolTipDelayed() TQString tip = "<p><nobr>" + ( basket->isLocked() ? kapp->makeStdCaption(i18n("%1 (Locked)")) : kapp->makeStdCaption( "%1") ) - .tqarg(Tools::textToHTMLWithoutP(basket->basketName())); + .arg(Tools::textToHTMLWithoutP(basket->basketName())); TQToolTip::add(this, tip); } |