diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-08-10 12:13:27 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-08-10 12:13:27 -0500 |
commit | d296f1d337dabfeae5191955fdadb874965dbbe9 (patch) | |
tree | 1a4b3b4cca01f2ea77eee2497297219d60e9bbd4 /tqtinterface/qt4/src/widgets/tqsplitter.cpp | |
parent | eaa7ee2e0bbca40ba3173c4304f81957e8964291 (diff) | |
download | experimental-d296f1d337dabfeae5191955fdadb874965dbbe9.tar.gz experimental-d296f1d337dabfeae5191955fdadb874965dbbe9.zip |
rename the following methods:
tqparent parent
tqmask mask
Diffstat (limited to 'tqtinterface/qt4/src/widgets/tqsplitter.cpp')
-rw-r--r-- | tqtinterface/qt4/src/widgets/tqsplitter.cpp | 20 |
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(); |