summaryrefslogtreecommitdiffstats
path: root/kcachegrind/kcachegrind/callmapview.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kcachegrind/kcachegrind/callmapview.cpp')
-rw-r--r--kcachegrind/kcachegrind/callmapview.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/kcachegrind/kcachegrind/callmapview.cpp b/kcachegrind/kcachegrind/callmapview.cpp
index 605e572e..3f363f29 100644
--- a/kcachegrind/kcachegrind/callmapview.cpp
+++ b/kcachegrind/kcachegrind/callmapview.cpp
@@ -51,8 +51,8 @@
CallMapView::CallMapView(bool showCallers, TraceItemView* parentView,
- TQWidget* tqparent, const char* name)
- : TreeMapWidget(new CallMapBaseItem(), tqparent, name), TraceItemView(parentView)
+ TQWidget* parent, const char* name)
+ : TreeMapWidget(new CallMapBaseItem(), parent, name), TraceItemView(parentView)
{
_showCallers = showCallers;
@@ -116,7 +116,7 @@ TQString CallMapView::whatsThis() const
"<em>very</em> time consuming, you may want to limit "
"the maximum drawn nesting level before. "
"'Best' determinates the split direction for tqchildren "
- "from the aspect ratio of the tqparent. "
+ "from the aspect ratio of the parent. "
"'Always Best' decides on remaining space for each "
"sibling. "
"'Ignore Proportions' takes space for function name "
@@ -171,7 +171,7 @@ void CallMapView::context(TreeMapItem* i,const TQPoint & p)
if ((int)name.length()>Configuration::maxSymbolLength())
name = name.left(Configuration::maxSymbolLength()) + "...";
fpopup.insertItem(name, 101+count);
- item = item->tqparent();
+ item = item->parent();
count++;
}
popup.insertSeparator();
@@ -223,7 +223,7 @@ void CallMapView::context(TreeMapItem* i,const TQPoint & p)
l2popup.setItemChecked(201+count, true);
foundStopName = true;
}
- item = item->tqparent();
+ item = item->parent();
count++;
}
}
@@ -326,7 +326,7 @@ void CallMapView::context(TreeMapItem* i,const TQPoint & p)
if (r>100 && r<150) {
r -= 100;
while (i && (r>1)) {
- i=i->tqparent();
+ i=i->parent();
r--;
}
activatedSlot(i);
@@ -336,7 +336,7 @@ void CallMapView::context(TreeMapItem* i,const TQPoint & p)
if (r>200 && r<250) {
r -= 200;
while (i && (r>1)) {
- i=i->tqparent();
+ i=i->parent();
r--;
}
if (i)
@@ -556,7 +556,7 @@ TQString CallMapView::tipString(TreeMapItem* i) const
if (!tip.isEmpty()) tip += "\n";
tip += itemTip;
- i = i->tqparent();
+ i = i->parent();
count++;
}
if (count == Configuration::maxSymbolCount()) tip += "\n...";