summaryrefslogtreecommitdiffstats
path: root/ksystemlog/src/logManager.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:39:35 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:39:35 -0600
commitb6d3b22ce8f0b50f77a9f9f2cbf91bef3da6c717 (patch)
tree8170614e2a0bb0348cfce1e75d4ead379b69a68c /ksystemlog/src/logManager.cpp
parente65d401151bf81fa3590435a3eed3edcd995fa89 (diff)
downloadksystemlog-b6d3b22ce8f0b50f77a9f9f2cbf91bef3da6c717.tar.gz
ksystemlog-b6d3b22ce8f0b50f77a9f9f2cbf91bef3da6c717.zip
Remove additional unneeded tq method conversions
Diffstat (limited to 'ksystemlog/src/logManager.cpp')
-rw-r--r--ksystemlog/src/logManager.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ksystemlog/src/logManager.cpp b/ksystemlog/src/logManager.cpp
index e34e10a..9025f6d 100644
--- a/ksystemlog/src/logManager.cpp
+++ b/ksystemlog/src/logManager.cpp
@@ -241,7 +241,7 @@ void LogManager::slotLogUpdated(int lineCount) {
//If the user is in this log manager, he does have to see that some new log lines have appeared
if (isCurrent()==false) {
- TQString title(i18n("%1 (%2)").tqarg(logMode->name).tqarg(newLinesSinceLastSelection));
+ TQString title(i18n("%1 (%2)").arg(logMode->name).arg(newLinesSinceLastSelection));
//This signal is emitted only if the selected tab is not this one
emit changeTitle(view, title);
@@ -311,10 +311,10 @@ void LogManager::slotFileSave() {
ioDev->close();
- emit changeStatusbar(i18n("1 log line saved to '%1'.", "%n log lines saved to '%1'.", nbCopied).tqarg(filename));
+ emit changeStatusbar(i18n("1 log line saved to '%1'.", "%n log lines saved to '%1'.", nbCopied).arg(filename));
}
else {
- TQString message(i18n("Unable to save file '%1': Permission Denied.").tqarg(filename));
+ TQString message(i18n("Unable to save file '%1': Permission Denied.").arg(filename));
KMessageBox::error(main, message, i18n("Unable to save file."), KMessageBox::Notify);
}