summaryrefslogtreecommitdiffstats
path: root/kcachegrind/kcachegrind/costtypeview.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kcachegrind/kcachegrind/costtypeview.cpp')
-rw-r--r--kcachegrind/kcachegrind/costtypeview.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kcachegrind/kcachegrind/costtypeview.cpp b/kcachegrind/kcachegrind/costtypeview.cpp
index 3f5417e9..d4087eba 100644
--- a/kcachegrind/kcachegrind/costtypeview.cpp
+++ b/kcachegrind/kcachegrind/costtypeview.cpp
@@ -146,13 +146,13 @@ void CostTypeView::context(TQListViewItem* i, const TQPoint & p, int)
else if (r == 97) {
int i = 1;
while(1) {
- if (!TraceCostType::knownVirtualType(i18n("New%1").arg(i)))
+ if (!TraceCostType::knownVirtualType(i18n("New%1").tqarg(i)))
break;
i++;
}
// add same new cost type to this mapping and to known types
- TQString shortName = i18n("New%1").arg(i);
- TQString longName = i18n("New Cost Type %1").arg(i);
+ TQString shortName = i18n("New%1").tqarg(i);
+ TQString longName = i18n("New Cost Type %1").tqarg(i);
TraceCostType::add(new TraceCostType(shortName, longName, "0"));
_data->mapping()->add(new TraceCostType(shortName, longName, "0"));
refresh();