diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
commit | 36a36a5c1015aa0d03f4515c401e907ddb9d6291 (patch) | |
tree | 0212ba6d2c749043134005a41f2bd0379619d40f /kdgantt/KDGanttSemiSizingControl.cpp | |
parent | 4c6f8d69e2d1501837affb472c4eb8fec4462240 (diff) | |
download | tdepim-36a36a5c1015aa0d03f4515c401e907ddb9d6291.tar.gz tdepim-36a36a5c1015aa0d03f4515c401e907ddb9d6291.zip |
rename the following methods:
tqparent parent
tqmask mask
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdgantt/KDGanttSemiSizingControl.cpp')
-rw-r--r-- | kdgantt/KDGanttSemiSizingControl.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/kdgantt/KDGanttSemiSizingControl.cpp b/kdgantt/KDGanttSemiSizingControl.cpp index 08c1a004c..bfaa161d0 100644 --- a/kdgantt/KDGanttSemiSizingControl.cpp +++ b/kdgantt/KDGanttSemiSizingControl.cpp @@ -57,15 +57,15 @@ orientation and the control arrow button on top of the controlled widget. - \param tqparent the tqparent widget. This parameter is passed to the + \param parent the parent widget. This parameter is passed to the base class. \param name the internal widget name. This parameter is passed to the base class. */ -KDGanttSemiSizingControl::KDGanttSemiSizingControl( TQWidget* tqparent, +KDGanttSemiSizingControl::KDGanttSemiSizingControl( TQWidget* parent, const char* name ) : - KDGanttSizingControl( tqparent, name ), _orient( Qt::Horizontal ), + KDGanttSizingControl( parent, name ), _orient( Qt::Horizontal ), _arrowPos( Before ), _minimizedWidget(0), _maximizedWidget(0) { init(); @@ -78,16 +78,16 @@ KDGanttSemiSizingControl::KDGanttSemiSizingControl( TQWidget* tqparent, the controlled widget (depending on the orientation). \param orientation the orientation of the splitter - \param tqparent the tqparent widget. This parameter is passed to the + \param parent the parent widget. This parameter is passed to the base class. \param name the internal widget name. This parameter is passed to the base class. */ KDGanttSemiSizingControl::KDGanttSemiSizingControl( Qt::Orientation orientation, - TQWidget* tqparent, + TQWidget* parent, const char* name ) : - KDGanttSizingControl( tqparent, name ), _orient( orientation ), + KDGanttSizingControl( parent, name ), _orient( orientation ), _arrowPos( Before ), _minimizedWidget(0), _maximizedWidget(0) { init(); @@ -101,7 +101,7 @@ KDGanttSemiSizingControl::KDGanttSemiSizingControl( Qt::Orientation orientation, \param arrowPosition specifies whether the control arrow button should appear before or after the controlled widget \param orientation the orientation of the splitter - \param tqparent the tqparent widget. This parameter is passed to the + \param parent the parent widget. This parameter is passed to the base class. \param name the internal widget name. This parameter is passed to the base class. @@ -109,9 +109,9 @@ KDGanttSemiSizingControl::KDGanttSemiSizingControl( Qt::Orientation orientation, KDGanttSemiSizingControl::KDGanttSemiSizingControl( ArrowPosition arrowPosition, Qt::Orientation orientation, - TQWidget* tqparent, + TQWidget* parent, const char* name ) : - KDGanttSizingControl( tqparent, name ), _orient( orientation ), + KDGanttSizingControl( parent, name ), _orient( orientation ), _arrowPos( arrowPosition ), _minimizedWidget(0), _maximizedWidget(0) { init(); @@ -313,7 +313,7 @@ void KDGanttSemiSizingControl::setup() ************************************************** */ // hack for the usage in KDGantt as pop-up legend widget // for this purpose, - // the _maximizedWidget must be a child of the tqparent of this widget + // the _maximizedWidget must be a child of the parent of this widget if ( isMinimized() ) { widget = _minimizedWidget; |