summaryrefslogtreecommitdiffstats
path: root/kdeui/kprogress.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kdeui/kprogress.cpp')
-rw-r--r--kdeui/kprogress.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kdeui/kprogress.cpp b/kdeui/kprogress.cpp
index 17994eb88..e10cb0f7b 100644
--- a/kdeui/kprogress.cpp
+++ b/kdeui/kprogress.cpp
@@ -132,9 +132,9 @@ bool KProgress::setIndicator(TQString &indicator, int progress, int totalSteps)
if (!totalSteps)
return false;
TQString newString(mFormat);
- newString.replace(TQString::fromLatin1("%v"),
+ newString.replace(TQString::tqfromLatin1("%v"),
TQString::number(progress));
- newString.replace(TQString::fromLatin1("%m"),
+ newString.replace(TQString::tqfromLatin1("%m"),
TQString::number(totalSteps));
if (totalSteps > INT_MAX / 1000) {
@@ -142,7 +142,7 @@ bool KProgress::setIndicator(TQString &indicator, int progress, int totalSteps)
totalSteps /= 1000;
}
- newString.replace(TQString::fromLatin1("%p"),
+ newString.replace(TQString::tqfromLatin1("%p"),
TQString::number((progress * 100) / totalSteps));
if (newString != indicator)