summaryrefslogtreecommitdiffstats
path: root/languages/cpp/debugger/framestackwidget.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
commit32b67ac0690de411b26b1d5e715b188c27442248 (patch)
tree43167816a3df6b3a877d71c9a7963ed270dcc8c9 /languages/cpp/debugger/framestackwidget.cpp
parent330c33ab6f97b279737bf9527c9add7bb1475450 (diff)
downloadtdevelop-32b67ac0690de411b26b1d5e715b188c27442248.tar.gz
tdevelop-32b67ac0690de411b26b1d5e715b188c27442248.zip
rename the following methods:
tqparent parent tqmask mask git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdevelop@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'languages/cpp/debugger/framestackwidget.cpp')
-rw-r--r--languages/cpp/debugger/framestackwidget.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/languages/cpp/debugger/framestackwidget.cpp b/languages/cpp/debugger/framestackwidget.cpp
index 28fd076e..639ab74b 100644
--- a/languages/cpp/debugger/framestackwidget.cpp
+++ b/languages/cpp/debugger/framestackwidget.cpp
@@ -39,9 +39,9 @@ namespace GDBDebugger
{
FramestackWidget::FramestackWidget(GDBController* controller,
- TQWidget *tqparent,
+ TQWidget *parent,
const char *name, WFlags f)
- : TQListView(tqparent, name, f),
+ : TQListView(parent, name, f),
viewedThread_(0),
controller_(controller),
mayUpdate_( false )
@@ -493,10 +493,10 @@ void FramestackWidget::drawContentsOffset( TQPainter * p, int ox, int oy,
// **************************************************************************
// **************************************************************************
-FrameStackItem::FrameStackItem(FramestackWidget *tqparent,
+FrameStackItem::FrameStackItem(FramestackWidget *parent,
unsigned frameNo,
const TQString &name)
- : TQListViewItem(tqparent, tqparent->lastChild()),
+ : TQListViewItem(parent, parent->lastChild()),
frameNo_(frameNo),
threadNo_(-1)
{
@@ -505,12 +505,12 @@ FrameStackItem::FrameStackItem(FramestackWidget *tqparent,
// **************************************************************************
-FrameStackItem::FrameStackItem(ThreadStackItem *tqparent,
+FrameStackItem::FrameStackItem(ThreadStackItem *parent,
unsigned frameNo,
const TQString &name)
- : TQListViewItem(tqparent, tqparent->lastChild()),
+ : TQListViewItem(parent, parent->lastChild()),
frameNo_(frameNo),
- threadNo_(tqparent->threadNo())
+ threadNo_(parent->threadNo())
{
setText(0, name);
}
@@ -554,8 +554,8 @@ void FrameStackItem::setOpen(bool open)
// **************************************************************************
// **************************************************************************
-ThreadStackItem::ThreadStackItem(FramestackWidget *tqparent, unsigned threadNo)
-: TQListViewItem(tqparent),
+ThreadStackItem::ThreadStackItem(FramestackWidget *parent, unsigned threadNo)
+: TQListViewItem(parent),
threadNo_(threadNo)
{
setText(0, i18n("Thread %1").tqarg(threadNo_));