summaryrefslogtreecommitdiffstats
path: root/ksquirrel/sq_externaltool.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:39:30 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:39:30 -0600
commitc1e4925208f428f2ad5a86d1a1eee47e3c43068a (patch)
tree698b7dfc0db6bd962c0c699fdbc43e7435526123 /ksquirrel/sq_externaltool.cpp
parentf5a0e45e0510e355733e6390eb26efd704c990c4 (diff)
downloadksquirrel-c1e4925208f428f2ad5a86d1a1eee47e3c43068a.tar.gz
ksquirrel-c1e4925208f428f2ad5a86d1a1eee47e3c43068a.zip
Remove additional unneeded tq method conversions
Diffstat (limited to 'ksquirrel/sq_externaltool.cpp')
-rw-r--r--ksquirrel/sq_externaltool.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ksquirrel/sq_externaltool.cpp b/ksquirrel/sq_externaltool.cpp
index 1bc2886..93ff52e 100644
--- a/ksquirrel/sq_externaltool.cpp
+++ b/ksquirrel/sq_externaltool.cpp
@@ -171,7 +171,7 @@ void SQ_ExternalTool::slotAboutToShowMenu()
TQString file = KStringHandler::rsqueeze(item->name(), 30);
// finally, change title
- TQString final = (items.count() == 1 || items.count() == 0) ? file : (file + TQString::fromLatin1(" (+%1)").tqarg(items.count()-1));
+ TQString final = (items.count() == 1 || items.count() == 0) ? file : (file + TQString::fromLatin1(" (+%1)").arg(items.count()-1));
menu->changeTitle(final);
}