summaryrefslogtreecommitdiffstats
path: root/languages/ruby/debugger/variablewidget.h
diff options
context:
space:
mode:
Diffstat (limited to 'languages/ruby/debugger/variablewidget.h')
-rw-r--r--languages/ruby/debugger/variablewidget.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/languages/ruby/debugger/variablewidget.h b/languages/ruby/debugger/variablewidget.h
index 830acf64..a54fc42e 100644
--- a/languages/ruby/debugger/variablewidget.h
+++ b/languages/ruby/debugger/variablewidget.h
@@ -66,7 +66,7 @@ class VariableWidget : public TQWidget
TQ_OBJECT
public:
- VariableWidget( TQWidget *tqparent=0, const char *name=0 );
+ VariableWidget( TQWidget *parent=0, const char *name=0 );
VariableTree *varTree() const
{ return varTree_; }
@@ -100,7 +100,7 @@ class VariableTree : public KListView, public TQToolTip
friend class LazyFetchItem;
public:
- VariableTree( VariableWidget *tqparent, const char *name=0 );
+ VariableTree( VariableWidget *parent, const char *name=0 );
virtual ~VariableTree();
// Clear everything but the Watch frame
@@ -172,8 +172,8 @@ private:
class LazyFetchItem : public KListViewItem
{
public:
- LazyFetchItem(VariableTree *tqparent);
- LazyFetchItem(LazyFetchItem *tqparent);
+ LazyFetchItem(VariableTree *parent);
+ LazyFetchItem(LazyFetchItem *parent);
virtual ~LazyFetchItem();
@@ -206,7 +206,7 @@ private:
class VarItem : public LazyFetchItem
{
public:
- VarItem( LazyFetchItem *tqparent, const TQString &varName, DataType dataType );
+ VarItem( LazyFetchItem *parent, const TQString &varName, DataType dataType );
virtual ~VarItem();
@@ -249,7 +249,7 @@ private:
class WatchVarItem : public VarItem
{
public:
- WatchVarItem( LazyFetchItem *tqparent, const TQString &varName, DataType dataType, int displayId = -1);
+ WatchVarItem( LazyFetchItem *parent, const TQString &varName, DataType dataType, int displayId = -1);
virtual ~WatchVarItem();
@@ -270,7 +270,7 @@ private:
class VarFrameRoot : public LazyFetchItem
{
public:
- VarFrameRoot(VariableTree *tqparent, int frame, int thread);
+ VarFrameRoot(VariableTree *parent, int frame, int thread);
virtual ~VarFrameRoot();
virtual int rtti() const { return RTTI_VAR_FRAME_ROOT; }
@@ -305,7 +305,7 @@ private:
class WatchRoot : public LazyFetchItem
{
public:
- WatchRoot(VariableTree * tqparent);
+ WatchRoot(VariableTree * parent);
virtual ~WatchRoot();
virtual int rtti() const { return RTTI_WATCH_ROOT; }
@@ -328,7 +328,7 @@ public:
class GlobalRoot : public LazyFetchItem
{
public:
- GlobalRoot(VariableTree * tqparent);
+ GlobalRoot(VariableTree * parent);
virtual ~GlobalRoot();
virtual int rtti() const { return RTTI_GLOBAL_ROOT; }