summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2011-12-19 11:41:02 -0600
committerSlávek Banko <[email protected]>2012-08-02 00:18:38 +0200
commit5a057fe5d951f49d27c46719debb3396cf3db75e (patch)
tree09489f3181cb28dfb2860689e5e0b09f713edd8f
parent2cbad6e6852a313acbd5f4b3d63393fe5d58e6a2 (diff)
downloadtde-systemsettings-5a057fe5d951f49d27c46719debb3396cf3db75e.tar.gz
tde-systemsettings-5a057fe5d951f49d27c46719debb3396cf3db75e.zip
Remove additional unneeded tq method conversions
(cherry picked from commit 13bbc66a0e4b8e6d6c27b8dd5e98f724c3d790bf)
-rw-r--r--systemsettings/mainwindow.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/systemsettings/mainwindow.cpp b/systemsettings/mainwindow.cpp
index cf2d1b5..a757577 100644
--- a/systemsettings/mainwindow.cpp
+++ b/systemsettings/mainwindow.cpp
@@ -298,7 +298,7 @@ void MainWindow::timerResize() {
void MainWindow::updateModuleHelp( KCModuleProxy *currentModule ) {
if ( currentModule->aboutData() ) {
- aboutModuleAction->setText(i18n("Help menu->about <modulename>", "About %1").tqarg(
+ aboutModuleAction->setText(i18n("Help menu->about <modulename>", "About %1").arg(
currentModule->moduleInfo().moduleName().replace("&","&&")));
aboutModuleAction->setIcon(currentModule->moduleInfo().icon());
aboutModuleAction->setEnabled(true);
@@ -349,11 +349,11 @@ void MainWindow::slotSearchHits(const TQString &query, int *hitList, int length)
} else {
if(length>=1) {
- generalHitLabel->setText(i18n("%1 hit in General","%1 hits in General",hitList[0]).tqarg(hitList[0]));
+ generalHitLabel->setText(i18n("%1 hit in General","%1 hits in General",hitList[0]).arg(hitList[0]));
}
if(length>=2) {
- advancedHitLabel->setText(i18n("%1 hit in Advanced","%1 hits in Advanced",hitList[1]).tqarg(hitList[1]));
+ advancedHitLabel->setText(i18n("%1 hit in Advanced","%1 hits in Advanced",hitList[1]).arg(hitList[1]));
}
}