summaryrefslogtreecommitdiffstats
path: root/ksquirrel/sq_widgetstack.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ksquirrel/sq_widgetstack.cpp')
-rw-r--r--ksquirrel/sq_widgetstack.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ksquirrel/sq_widgetstack.cpp b/ksquirrel/sq_widgetstack.cpp
index 0eb9738..ab2ac43 100644
--- a/ksquirrel/sq_widgetstack.cpp
+++ b/ksquirrel/sq_widgetstack.cpp
@@ -583,11 +583,11 @@ void SQ_WidgetStack::emitNewLastURL(const KURL &u)
TQString targ = KStringHandler::csqueeze(u.isLocalFile() ? u.path() : u.prettyURL(), 25);
if(fileaction == SQ_WidgetStack::Copy)
- text = i18n("Repeat (copy to %1)").arg(targ);
+ text = i18n("Repeat (copy to %1)").tqarg(targ);
else if(fileaction == SQ_WidgetStack::Cut)
- text = i18n("Repeat (move to %1)").arg(targ);
+ text = i18n("Repeat (move to %1)").tqarg(targ);
else if(fileaction == SQ_WidgetStack::Link)
- text = i18n("Repeat (link to %1)").arg(targ);
+ text = i18n("Repeat (link to %1)").tqarg(targ);
if(!text.isEmpty())
emit newLastURL(text);