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.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/kcachegrind/kcachegrind/stackitem.cpp b/kcachegrind/kcachegrind/stackitem.cpp
index e3763ab4..3b41740a 100644
--- a/kcachegrind/kcachegrind/stackitem.cpp
+++ b/kcachegrind/kcachegrind/stackitem.cpp
@@ -31,8 +31,8 @@
// StackItem
StackItem::StackItem(StackSelection* ss,
- TQListView* parent, TraceFunction* f)
- :TQListViewItem(parent)
+ TQListView* tqparent, TraceFunction* f)
+ :TQListViewItem(tqparent)
{
_view = ss;
_function = f;
@@ -46,8 +46,8 @@ StackItem::StackItem(StackSelection* ss,
}
StackItem::StackItem(StackSelection* ss,
- TQListView* parent, TraceCall* call)
- :TQListViewItem(parent)
+ TQListView* tqparent, TraceCall* call)
+ :TQListViewItem(tqparent)
{
_view = ss;
_call = call;
@@ -85,7 +85,7 @@ void StackItem::updateCost()
if (Configuration::showPercentage())
setText(0, TQString("%1")
- .arg(sum, 0, 'f', Configuration::percentPrecision()));
+ .tqarg(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")
- .arg(sum, 0, 'f', Configuration::percentPrecision()));
+ .tqarg(sum, 0, 'f', Configuration::percentPrecision()));
else
setText(1, _call->prettySubCost(ct2));