diff --git a/src/cpufreqd/cpufreqdconnection.cpp b/src/cpufreqd/cpufreqdconnection.cpp index 7820029..b46aedb 100644 --- a/src/cpufreqd/cpufreqdconnection.cpp +++ b/src/cpufreqd/cpufreqdconnection.cpp @@ -36,7 +36,7 @@ * Hrvoje Zeba * * Format: - * it is an uint32_t used as bittqmask + * it is an uint32_t used as bitmask * * 31-16 15-0 * diff --git a/src/cpufreqd/cpufreqdconnection.h b/src/cpufreqd/cpufreqdconnection.h index 28ab2bc..9641b51 100644 --- a/src/cpufreqd/cpufreqdconnection.h +++ b/src/cpufreqd/cpufreqdconnection.h @@ -29,7 +29,7 @@ * Hrvoje Zeba * * Format: - * it is an uint32_t used as bittqmask + * it is an uint32_t used as bitmask * * 31-16 15-0 * diff --git a/src/flowlayout.cpp b/src/flowlayout.cpp index ae37828..63621fc 100644 --- a/src/flowlayout.cpp +++ b/src/flowlayout.cpp @@ -67,12 +67,12 @@ TQLayoutItem* FlowLayoutIterator::takeCurrent(){ } -FlowLayout::FlowLayout( TQWidget* tqparent, Qt::Orientation orientation, int border, int space, const char* name ) - : TQLayout( tqparent, border, space, name ), +FlowLayout::FlowLayout( TQWidget* parent, Qt::Orientation orientation, int border, int space, const char* name ) + : TQLayout( parent, border, space, name ), mOrientation(orientation), mLastItem(NULL){ } -FlowLayout::FlowLayout( TQLayout* tqparent, Qt::Orientation orientation, int space, const char* name ) - : TQLayout( tqparent, space, name ), +FlowLayout::FlowLayout( TQLayout* parent, Qt::Orientation orientation, int space, const char* name ) + : TQLayout( parent, space, name ), mOrientation(orientation), mLastItem(NULL){ } FlowLayout::FlowLayout( Qt::Orientation orientation, int space, const char* name ) diff --git a/src/flowlayout.h b/src/flowlayout.h index e928050..d5b73a2 100644 --- a/src/flowlayout.h +++ b/src/flowlayout.h @@ -37,8 +37,8 @@ public: ABOVE = 0, BELOW = 1 }; - FlowLayout( TQWidget* tqparent, Qt::Orientation orientation=Qt::Horizontal, int border=0, int space=-1, const char* name=0 ); - FlowLayout( TQLayout* tqparent, Qt::Orientation orientation=Qt::Horizontal, int space=-1, const char* name=0 ); + FlowLayout( TQWidget* parent, Qt::Orientation orientation=Qt::Horizontal, int border=0, int space=-1, const char* name=0 ); + FlowLayout( TQLayout* parent, Qt::Orientation orientation=Qt::Horizontal, int space=-1, const char* name=0 ); FlowLayout( Qt::Orientation=Qt::Horizontal, int space=-1, const char* name=0 ); virtual ~FlowLayout(); /** diff --git a/src/kima.h b/src/kima.h index 25185db..8560799 100644 --- a/src/kima.h +++ b/src/kima.h @@ -61,7 +61,7 @@ public: * @param configFile The configFile handed over in the factory function. * @param Type The applet @ref type(). * @param actions Standard RMB menu actions supported by the applet (see @ref action() ). - * @param tqparent The pointer to the tqparent widget handed over in the factory function. + * @param parent The pointer to the parent widget handed over in the factory function. * @param name A TQt object name for your applet. **/ Kima(const TQString& inConfigFile, Type inType = Normal, int inActions = 0, diff --git a/src/prefs.cpp b/src/prefs.cpp index cf17d22..5e5ba4a 100644 --- a/src/prefs.cpp +++ b/src/prefs.cpp @@ -21,11 +21,11 @@ #include /* - * Constructs a Prefs as a child of 'tqparent', with the + * Constructs a Prefs as a child of 'parent', with the * name 'name' and widget flags set to 'f'. */ -Prefs::Prefs( TQWidget* tqparent, const char* name, WFlags fl ) - : TQWidget( tqparent, name, fl ) +Prefs::Prefs( TQWidget* parent, const char* name, WFlags fl ) + : TQWidget( parent, name, fl ) { if ( !name ) setName( "Prefs" ); diff --git a/src/sources/labelsource.h b/src/sources/labelsource.h index d10c98a..14d4746 100644 --- a/src/sources/labelsource.h +++ b/src/sources/labelsource.h @@ -95,7 +95,7 @@ protected: TQLabel* mLabel; /** - * the tqparent of the label we are going to create + * the parent of the label we are going to create */ TQWidget* mParent; diff --git a/src/sources/labelsourcePrefs.cpp b/src/sources/labelsourcePrefs.cpp index 4ff75fc..db9b675 100644 --- a/src/sources/labelsourcePrefs.cpp +++ b/src/sources/labelsourcePrefs.cpp @@ -23,11 +23,11 @@ #include /* - * Constructs a LabelSourcePrefs as a child of 'tqparent', with the + * Constructs a LabelSourcePrefs as a child of 'parent', with the * name 'name' and widget flags set to 'f'. */ -LabelSourcePrefs::LabelSourcePrefs( TQWidget* tqparent, const char* name, WFlags fl ) - : TQWidget( tqparent, name, fl ) +LabelSourcePrefs::LabelSourcePrefs( TQWidget* parent, const char* name, WFlags fl ) + : TQWidget( parent, name, fl ) { if ( !name ) setName( "LabelSourcePrefs" ); diff --git a/src/sources/sourceprefs.cpp b/src/sources/sourceprefs.cpp index 8639c93..160cfd0 100644 --- a/src/sources/sourceprefs.cpp +++ b/src/sources/sourceprefs.cpp @@ -21,11 +21,11 @@ #include /* - * Constructs a SourcePrefs as a child of 'tqparent', with the + * Constructs a SourcePrefs as a child of 'parent', with the * name 'name' and widget flags set to 'f'. */ -SourcePrefs::SourcePrefs( TQWidget* tqparent, const char* name, WFlags fl ) - : TQWidget( tqparent, name, fl ) +SourcePrefs::SourcePrefs( TQWidget* parent, const char* name, WFlags fl ) + : TQWidget( parent, name, fl ) { if ( !name ) setName( "SourcePrefs" );