From eb570158698cf61dad4f77d950ef908160f6c3cc Mon Sep 17 00:00:00 2001 From: tpearson Date: Wed, 10 Aug 2011 22:19:39 +0000 Subject: rename the following methods: tqparent parent tqmask mask git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeedu@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- libkdeedu/extdate/extdatetimeedit.cpp | 46 +++++++++++++++++------------------ 1 file changed, 23 insertions(+), 23 deletions(-) (limited to 'libkdeedu/extdate/extdatetimeedit.cpp') diff --git a/libkdeedu/extdate/extdatetimeedit.cpp b/libkdeedu/extdate/extdatetimeedit.cpp index 61331bc9..796bd858 100644 --- a/libkdeedu/extdate/extdatetimeedit.cpp +++ b/libkdeedu/extdate/extdatetimeedit.cpp @@ -342,15 +342,15 @@ private: }; /*! - Constructs an empty datetime editor with tqparent \a tqparent and + Constructs an empty datetime editor with parent \a parent and called \a name. */ -ExtDateTimeEditor::ExtDateTimeEditor( ExtDateTimeEditBase * tqparent, +ExtDateTimeEditor::ExtDateTimeEditor( ExtDateTimeEditBase * parent, const char * name ) - : TQWidget( tqparent, name, WNoAutoErase ) + : TQWidget( parent, name, WNoAutoErase ) { d = new ExtDateTimeEditorPrivate(); - cw = tqparent; + cw = parent; init(); } @@ -792,12 +792,12 @@ public: */ /*! - Constructs an empty date editor which is a child of \a tqparent and + Constructs an empty date editor which is a child of \a parent and called name \a name. */ -ExtDateEdit::ExtDateEdit( TQWidget * tqparent, const char * name ) - : ExtDateTimeEditBase( tqparent, name ) +ExtDateEdit::ExtDateEdit( TQWidget * parent, const char * name ) + : ExtDateTimeEditBase( parent, name ) { init(); updateButtons(); @@ -806,14 +806,14 @@ ExtDateEdit::ExtDateEdit( TQWidget * tqparent, const char * name ) /*! \overload - Constructs a date editor with the initial value \a date, tqparent \a - tqparent and called \a name. + Constructs a date editor with the initial value \a date, parent \a + parent and called \a name. The date editor is initialized with \a date. */ -ExtDateEdit::ExtDateEdit( const ExtDate& date, TQWidget * tqparent, const char * name ) - : ExtDateTimeEditBase( tqparent, name ) +ExtDateEdit::ExtDateEdit( const ExtDate& date, TQWidget * parent, const char * name ) + : ExtDateTimeEditBase( parent, name ) { init(); setDate( date ); @@ -1706,12 +1706,12 @@ public: // /*! -// Constructs an empty time edit with tqparent \a tqparent and called \a +// Constructs an empty time edit with parent \a parent and called \a // name. // */ // -// TQTimeEdit::TQTimeEdit( TQWidget * tqparent, const char * name ) -// : ExtDateTimeEditBase( tqparent, name ) +// TQTimeEdit::TQTimeEdit( TQWidget * parent, const char * name ) +// : ExtDateTimeEditBase( parent, name ) // { // init(); // } @@ -1720,11 +1720,11 @@ public: // \overload // // Constructs a time edit with the initial time value, \a time, -// tqparent \a tqparent and called \a name. +// parent \a parent and called \a name. // */ // -// TQTimeEdit::TQTimeEdit( const TQTime& time, TQWidget * tqparent, const char * name ) -// : ExtDateTimeEditBase( tqparent, name ) +// TQTimeEdit::TQTimeEdit( const TQTime& time, TQWidget * parent, const char * name ) +// : ExtDateTimeEditBase( parent, name ) // { // init(); // setTime( time ); @@ -2528,11 +2528,11 @@ public: */ /*! - Constructs an empty datetime edit with tqparent \a tqparent and called + Constructs an empty datetime edit with parent \a parent and called \a name. */ -ExtDateTimeEdit::ExtDateTimeEdit( TQWidget * tqparent, const char * name ) - : TQWidget( tqparent, name ) +ExtDateTimeEdit::ExtDateTimeEdit( TQWidget * parent, const char * name ) + : TQWidget( parent, name ) { init(); } @@ -2542,11 +2542,11 @@ ExtDateTimeEdit::ExtDateTimeEdit( TQWidget * tqparent, const char * name ) \overload Constructs a datetime edit with the initial value \a datetime, - tqparent \a tqparent and called \a name. + parent \a parent and called \a name. */ ExtDateTimeEdit::ExtDateTimeEdit( const ExtDateTime& datetime, - TQWidget * tqparent, const char * name ) - : TQWidget( tqparent, name ) + TQWidget * parent, const char * name ) + : TQWidget( parent, name ) { init(); setDateTime( datetime ); -- cgit v1.2.1