diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:41:02 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:41:02 -0600 |
commit | 13bbc66a0e4b8e6d6c27b8dd5e98f724c3d790bf (patch) | |
tree | ce1e880943dc29d9ff8c2295d82754494f204cec /systemsettings | |
parent | 3eb39830ef8d807ff1538a0aa66a9b3fd711903a (diff) | |
download | tde-systemsettings-13bbc66a0e4b8e6d6c27b8dd5e98f724c3d790bf.tar.gz tde-systemsettings-13bbc66a0e4b8e6d6c27b8dd5e98f724c3d790bf.zip |
Remove additional unneeded tq method conversions
Diffstat (limited to 'systemsettings')
-rw-r--r-- | systemsettings/mainwindow.cpp | 6 |
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])); } } |