summaryrefslogtreecommitdiffstats
path: root/src/svnfrontend/tcontextlistener.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2011-12-15 15:34:08 -0600
committerTimothy Pearson <[email protected]>2011-12-15 15:34:08 -0600
commitbb7be2361770a435b3e2e8ae2ac4250bf9810bb4 (patch)
tree3dc3697661e497b5486191491da2ed4cc751b7fc /src/svnfrontend/tcontextlistener.cpp
parent40e169496670c40004f7386a23f7c03d9aeac3e0 (diff)
downloadtdesvn-bb7be2361770a435b3e2e8ae2ac4250bf9810bb4.tar.gz
tdesvn-bb7be2361770a435b3e2e8ae2ac4250bf9810bb4.zip
Rename a number of old tq methods that are no longer tq specific
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 53d7892..486af86 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.").tqarg(s1).tqarg(s2);
+ msg = i18n("%1 of %2 transferred.").arg(s1).arg(s2);
} else {
- msg = i18n("%1 transferred.").tqarg(s1);
+ msg = i18n("%1 transferred.").arg(s1);
}
_notify->msg = msg;
ev->setData((void*)_notify);