summaryrefslogtreecommitdiffstats
path: root/src/svnfrontend/tcontextlistener.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-16 09:57:49 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-16 09:57:49 -0600
commit548395e018d377eaa8fede0fba271da8b6c49fc9 (patch)
tree6b6acd1baf1a63c2dfb1735461d8a1e2e20f8385 /src/svnfrontend/tcontextlistener.cpp
parentbb7be2361770a435b3e2e8ae2ac4250bf9810bb4 (diff)
downloadtdesvn-548395e018d377eaa8fede0fba271da8b6c49fc9.tar.gz
tdesvn-548395e018d377eaa8fede0fba271da8b6c49fc9.zip
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit bb7be2361770a435b3e2e8ae2ac4250bf9810bb4.
Diffstat (limited to 'src/svnfrontend/tcontextlistener.cpp')
-rw-r--r--src/svnfrontend/tcontextlistener.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/svnfrontend/tcontextlistener.cpp b/src/svnfrontend/tcontextlistener.cpp
index 486af86..53d7892 100644
--- a/src/svnfrontend/tcontextlistener.cpp
+++ b/src/svnfrontend/tcontextlistener.cpp
@@ -188,9 +188,9 @@ void ThreadContextListener::contextProgress(long long int current, long long int
TQString s1 = helpers::ByteToString()(current);
if (max>-1) {
TQString s2 = helpers::ByteToString()(max);
- msg = i18n("%1 of %2 transferred.").arg(s1).arg(s2);
+ msg = i18n("%1 of %2 transferred.").tqarg(s1).tqarg(s2);
} else {
- msg = i18n("%1 transferred.").arg(s1);
+ msg = i18n("%1 transferred.").tqarg(s1);
}
_notify->msg = msg;
ev->setData((void*)_notify);