diff options
author | Timothy Pearson <[email protected]> | 2011-12-19 11:35:00 -0600 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2012-06-25 03:21:34 +0200 |
commit | 4432e0a1145b0ef95d741fea6d04b565f36fa626 (patch) | |
tree | 7b61af36dc90fbe53aefa70337c04b4bfdaf727d /src/settings.cpp | |
parent | 636a6a6e172e0493af4b19582e07ef8165973329 (diff) | |
download | basket-4432e0a1145b0ef95d741fea6d04b565f36fa626.tar.gz basket-4432e0a1145b0ef95d741fea6d04b565f36fa626.zip |
Remove additional unneeded tq method conversions
(cherry picked from commit 522c7294f06d294c77bc1ea7d0dec4b371c43373)
Diffstat (limited to 'src/settings.cpp')
-rw-r--r-- | src/settings.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/settings.cpp b/src/settings.cpp index ce25ef0..9195324 100644 --- a/src/settings.cpp +++ b/src/settings.cpp @@ -394,7 +394,7 @@ GeneralPage::GeneralPage(TQWidget * parent, const char * name) "on that icon to paste the current selection.") + "</p>" + "<p>" + i18n("When doing so, %1 pops up a little balloon message to inform you the action has been successfully done. You can disable that balloon.") + "</p>" + "<p>" + i18n("Note that those messages are smart enough to not appear if the main window is visible. This is because you already see the result of your actions in the main window.") + "</p>") - .tqarg(kapp->aboutData()->programName()), + .arg(kapp->aboutData()->programName()), this); hLay->addWidget(m_usePassivePopup); hLay->addWidget(hLabel); @@ -798,7 +798,7 @@ NotesAppearancePage::NotesAppearancePage(TQWidget * parent, const char * name) m_fileLook = new LinkLookEditWidget(this, i18n("Annual report"), "document", tabs); m_localLinkLook = new LinkLookEditWidget(this, i18n("Home folder"), "folder_home", tabs); m_networkLinkLook = new LinkLookEditWidget(this, "www.kde.org", KMimeType::iconForURL("http://www.kde.org"), tabs); - m_launcherLook = new LinkLookEditWidget(this, i18n("Launch %1").tqarg(kapp->aboutData()->programName()), "basket", tabs); + m_launcherLook = new LinkLookEditWidget(this, i18n("Launch %1").arg(kapp->aboutData()->programName()), "basket", tabs); tabs->addTab(m_soundLook, i18n("&Sounds") ); tabs->addTab(m_fileLook, i18n("&Files") ); tabs->addTab(m_localLinkLook, i18n("&Local Links") ); |