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>
*
* Format:
* it is an uint32_t used as bittqmask
* it is an uint32_t used as bitmask
*
* 31-16 15-0
* <command> <arguments>

@ -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>

@ -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 )

@ -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();
/**

@ -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,

@ -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" );

@ -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;

@ -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" );

@ -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" );

Loading…
Cancel
Save