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
v3.5.13-sru
tpearson 13 years ago
parent 497ab12472
commit 2c89c81198

@ -36,7 +36,7 @@
* Hrvoje Zeba <hrvoje@boo.mi2.hr> * Hrvoje Zeba <hrvoje@boo.mi2.hr>
* *
* Format: * Format:
* it is an uint32_t used as bittqmask * it is an uint32_t used as bitmask
* *
* 31-16 15-0 * 31-16 15-0
* <command> <arguments> * <command> <arguments>

@ -29,7 +29,7 @@
* Hrvoje Zeba <hrvoje@boo.mi2.hr> * Hrvoje Zeba <hrvoje@boo.mi2.hr>
* *
* Format: * Format:
* it is an uint32_t used as bittqmask * it is an uint32_t used as bitmask
* *
* 31-16 15-0 * 31-16 15-0
* <command> <arguments> * <command> <arguments>

@ -67,12 +67,12 @@ TQLayoutItem* FlowLayoutIterator::takeCurrent(){
} }
FlowLayout::FlowLayout( TQWidget* tqparent, Qt::Orientation orientation, int border, int space, const char* name ) FlowLayout::FlowLayout( TQWidget* parent, Qt::Orientation orientation, int border, int space, const char* name )
: TQLayout( tqparent, border, space, name ), : TQLayout( parent, border, space, name ),
mOrientation(orientation), mLastItem(NULL){ mOrientation(orientation), mLastItem(NULL){
} }
FlowLayout::FlowLayout( TQLayout* tqparent, Qt::Orientation orientation, int space, const char* name ) FlowLayout::FlowLayout( TQLayout* parent, Qt::Orientation orientation, int space, const char* name )
: TQLayout( tqparent, space, name ), : TQLayout( parent, space, name ),
mOrientation(orientation), mLastItem(NULL){ mOrientation(orientation), mLastItem(NULL){
} }
FlowLayout::FlowLayout( Qt::Orientation orientation, int space, const char* name ) FlowLayout::FlowLayout( Qt::Orientation orientation, int space, const char* name )

@ -37,8 +37,8 @@ public:
ABOVE = 0, ABOVE = 0,
BELOW = 1 BELOW = 1
}; };
FlowLayout( TQWidget* tqparent, Qt::Orientation orientation=Qt::Horizontal, int border=0, 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* tqparent, Qt::Orientation orientation=Qt::Horizontal, 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 ); FlowLayout( Qt::Orientation=Qt::Horizontal, int space=-1, const char* name=0 );
virtual ~FlowLayout(); virtual ~FlowLayout();
/** /**

@ -61,7 +61,7 @@ public:
* @param configFile The configFile handed over in the factory function. * @param configFile The configFile handed over in the factory function.
* @param Type The applet @ref type(). * @param Type The applet @ref type().
* @param actions Standard RMB menu actions supported by the applet (see @ref action() ). * @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. * @param name A TQt object name for your applet.
**/ **/
Kima(const TQString& inConfigFile, Type inType = Normal, int inActions = 0, Kima(const TQString& inConfigFile, Type inType = Normal, int inActions = 0,

@ -21,11 +21,11 @@
#include <tqwhatsthis.h> #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'. * name 'name' and widget flags set to 'f'.
*/ */
Prefs::Prefs( TQWidget* tqparent, const char* name, WFlags fl ) Prefs::Prefs( TQWidget* parent, const char* name, WFlags fl )
: TQWidget( tqparent, name, fl ) : TQWidget( parent, name, fl )
{ {
if ( !name ) if ( !name )
setName( "Prefs" ); setName( "Prefs" );

@ -95,7 +95,7 @@ protected:
TQLabel* mLabel; TQLabel* mLabel;
/** /**
* the tqparent of the label we are going to create * the parent of the label we are going to create
*/ */
TQWidget* mParent; TQWidget* mParent;

@ -23,11 +23,11 @@
#include <tqwhatsthis.h> #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'. * name 'name' and widget flags set to 'f'.
*/ */
LabelSourcePrefs::LabelSourcePrefs( TQWidget* tqparent, const char* name, WFlags fl ) LabelSourcePrefs::LabelSourcePrefs( TQWidget* parent, const char* name, WFlags fl )
: TQWidget( tqparent, name, fl ) : TQWidget( parent, name, fl )
{ {
if ( !name ) if ( !name )
setName( "LabelSourcePrefs" ); setName( "LabelSourcePrefs" );

@ -21,11 +21,11 @@
#include <tqwhatsthis.h> #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'. * name 'name' and widget flags set to 'f'.
*/ */
SourcePrefs::SourcePrefs( TQWidget* tqparent, const char* name, WFlags fl ) SourcePrefs::SourcePrefs( TQWidget* parent, const char* name, WFlags fl )
: TQWidget( tqparent, name, fl ) : TQWidget( parent, name, fl )
{ {
if ( !name ) if ( !name )
setName( "SourcePrefs" ); setName( "SourcePrefs" );

Loading…
Cancel
Save