summaryrefslogtreecommitdiffstats
path: root/kcachegrind/kcachegrind/stackitem.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kcachegrind/kcachegrind/stackitem.cpp')
-rw-r--r--kcachegrind/kcachegrind/stackitem.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kcachegrind/kcachegrind/stackitem.cpp b/kcachegrind/kcachegrind/stackitem.cpp
index af0499ba..e3763ab4 100644
--- a/kcachegrind/kcachegrind/stackitem.cpp
+++ b/kcachegrind/kcachegrind/stackitem.cpp
@@ -85,7 +85,7 @@ void StackItem::updateCost()
if (Configuration::showPercentage())
setText(0, TQString("%1")
- .tqarg(sum, 0, 'f', Configuration::percentPrecision()));
+ .arg(sum, 0, 'f', Configuration::percentPrecision()));
else
setText(0, _call->prettySubCost(ct));
@@ -107,7 +107,7 @@ void StackItem::updateCost()
if (Configuration::showPercentage())
setText(1, TQString("%1")
- .tqarg(sum, 0, 'f', Configuration::percentPrecision()));
+ .arg(sum, 0, 'f', Configuration::percentPrecision()));
else
setText(1, _call->prettySubCost(ct2));