summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
commit2c89c8119851d36886d21289ec3a3c7a1c071017 (patch)
tree1d9bad553f8c68593b8086895f410cb37bcb2a2f
parent497ab12472bb04a18ec409bbe643334329559864 (diff)
downloadkima-2c89c811.tar.gz
kima-2c89c811.zip
rename the following methods:
tqparent parent tqmask mask git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kima@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
-rw-r--r--src/cpufreqd/cpufreqdconnection.cpp2
-rw-r--r--src/cpufreqd/cpufreqdconnection.h2
-rw-r--r--src/flowlayout.cpp8
-rw-r--r--src/flowlayout.h4
-rw-r--r--src/kima.h2
-rw-r--r--src/prefs.cpp6
-rw-r--r--src/sources/labelsource.h2
-rw-r--r--src/sources/labelsourcePrefs.cpp6
-rw-r--r--src/sources/sourceprefs.cpp6
9 files changed, 19 insertions, 19 deletions
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 <hrvoje@boo.mi2.hr>
*
* Format:
- * it is an uint32_t used as bittqmask
+ * it is an uint32_t used as bitmask
*
* 31-16 15-0
* <command> <arguments>
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 <hrvoje@boo.mi2.hr>
*
* Format:
- * it is an uint32_t used as bittqmask
+ * it is an uint32_t used as bitmask
*
* 31-16 15-0
* <command> <arguments>
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 <tqwhatsthis.h>
/*
- * 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 <tqwhatsthis.h>
/*
- * 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 <tqwhatsthis.h>
/*
- * 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" );