summaryrefslogtreecommitdiffstats
path: root/tqtinterface/qt4/src/widgets/tqsplitter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tqtinterface/qt4/src/widgets/tqsplitter.cpp')
-rw-r--r--tqtinterface/qt4/src/widgets/tqsplitter.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/tqtinterface/qt4/src/widgets/tqsplitter.cpp b/tqtinterface/qt4/src/widgets/tqsplitter.cpp
index b5a159b..18cf11c 100644
--- a/tqtinterface/qt4/src/widgets/tqsplitter.cpp
+++ b/tqtinterface/qt4/src/widgets/tqsplitter.cpp
@@ -86,11 +86,11 @@ static TQPoint bottomRight( TQWidget *w )
}
}
-TQSplitterHandle::TQSplitterHandle( Qt::Orientation o, TQSplitter *tqparent,
+TQSplitterHandle::TQSplitterHandle( Qt::Orientation o, TQSplitter *parent,
const char * name )
- : TQWidget( tqparent, name )
+ : TQWidget( parent, name )
{
- s = tqparent;
+ s = parent;
setOrientation( o );
}
@@ -172,7 +172,7 @@ TQCOORD TQSplitterLayoutStruct::getSizer( Qt::Orientation orient )
To show a TQListBox, a TQListView and a TQTextEdit side by side:
\code
- TQSplitter *split = new TQSplitter( tqparent );
+ TQSplitter *split = new TQSplitter( parent );
TQListBox *lb = new TQListBox( split );
TQListView *lv = new TQListView( split );
TQTextEdit *ed = new TQTextEdit( split );
@@ -209,12 +209,12 @@ TQCOORD TQSplitterLayoutStruct::getSizer( Qt::Orientation orient )
/*!
- Constructs a horizontal splitter with the \a tqparent and \a name
+ Constructs a horizontal splitter with the \a parent and \a name
arguments being passed on to the TQFrame constructor.
*/
-TQSplitter::TQSplitter( TQWidget *tqparent, const char *name )
- : TQFrame( tqparent, name, TQt::WPaintUnclipped )
+TQSplitter::TQSplitter( TQWidget *parent, const char *name )
+ : TQFrame( parent, name, TQt::WPaintUnclipped )
{
orient = Qt::Horizontal;
init();
@@ -222,12 +222,12 @@ TQSplitter::TQSplitter( TQWidget *tqparent, const char *name )
/*!
- Constructs a splitter with orientation \a o with the \a tqparent and
+ Constructs a splitter with orientation \a o with the \a parent and
\a name arguments being passed on to the TQFrame constructor.
*/
-TQSplitter::TQSplitter( Qt::Orientation o, TQWidget *tqparent, const char *name )
- : TQFrame( tqparent, name, TQt::WPaintUnclipped )
+TQSplitter::TQSplitter( Qt::Orientation o, TQWidget *parent, const char *name )
+ : TQFrame( parent, name, TQt::WPaintUnclipped )
{
orient = o;
init();