rename the following methods:

tqparent parent
tqmask mask


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/knemo@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
v3.5.13-sru
tpearson 13 years ago
parent c745472a20
commit a84ebeda75

@ -65,8 +65,8 @@ const TQString ConfigDialog::SUFFIX_WLAN = "_wlan";
typedef KGenericFactory<ConfigDialog, TQWidget> KNemoFactory;
K_EXPORT_COMPONENT_FACTORY( kcm_knemo, KNemoFactory("kcm_knemo") )
ConfigDialog::ConfigDialog( TQWidget *tqparent, const char *name, const TQStringList& )
: KCModule( KNemoFactory::instance(), tqparent, name ),
ConfigDialog::ConfigDialog( TQWidget *parent, const char *name, const TQStringList& )
: KCModule( KNemoFactory::instance(), parent, name ),
mLock( false ),
mDlg( new ConfigDlg( this ) ),
mColorVLines( 0x04FB1D ),

@ -51,7 +51,7 @@ public:
/**
* Default Constructor
*/
ConfigDialog( TQWidget *tqparent, const char *name, const TQStringList& );
ConfigDialog( TQWidget *parent, const char *name, const TQStringList& );
/**
* Default Destructor

@ -22,8 +22,8 @@
#include "interface.h"
#include "interfacemonitor.h"
InterfaceMonitor::InterfaceMonitor( TQObject* tqparent, const char* name )
: TQObject( tqparent, name )
InterfaceMonitor::InterfaceMonitor( TQObject* parent, const char* name )
: TQObject( parent, name )
{
}

@ -43,7 +43,7 @@ public:
/**
* Default Constructor
*/
InterfaceMonitor(TQObject* tqparent = 0L, const char* name = 0L);
InterfaceMonitor(TQObject* parent = 0L, const char* name = 0L);
/**
* Default Destructor

@ -36,8 +36,8 @@
* if we walk back in time, so better not play with the system date...
*/
InterfaceStatisticsDialog::InterfaceStatisticsDialog( Interface* interface, TQWidget* tqparent, const char* name )
: InterfaceStatisticsDlg( tqparent, name ),
InterfaceStatisticsDialog::InterfaceStatisticsDialog( Interface* interface, TQWidget* parent, const char* name )
: InterfaceStatisticsDlg( parent, name ),
mInterface( interface )
{
setIcon( SmallIcon( "knemo" ) );

@ -44,7 +44,7 @@ public:
* Default Constructor
*/
InterfaceStatisticsDialog( Interface* interface,
TQWidget* tqparent = 0L, const char* name = 0L );
TQWidget* parent = 0L, const char* name = 0L );
/**
* Default Destructor

@ -37,8 +37,8 @@
#include "interfacestatistics.h"
#include "interfacestatusdialog.h"
InterfaceStatusDialog::InterfaceStatusDialog( Interface* interface, TQWidget* tqparent, const char* name )
: InterfaceStatusDlg( tqparent, name ),
InterfaceStatusDialog::InterfaceStatusDialog( Interface* interface, TQWidget* parent, const char* name )
: InterfaceStatusDlg( parent, name ),
mPosInitialized( false ),
mInterface( interface )
{

@ -44,7 +44,7 @@ public:
* Default Constructor
*/
InterfaceStatusDialog( Interface* interface,
TQWidget* tqparent = 0L, const char* name = 0L );
TQWidget* parent = 0L, const char* name = 0L );
/**
* Default Destructor

@ -29,8 +29,8 @@
#include "interfacetooltip.h"
InterfaceToolTip::InterfaceToolTip( Interface* interface,
TQWidget* tqparent )
: TQToolTip( tqparent ),
TQWidget* parent )
: TQToolTip( parent ),
mInterface( interface )
{
setupToolTipArray();

@ -41,7 +41,7 @@ public:
/**
* Default Constructor
*/
InterfaceToolTip( Interface* interface, TQWidget* tqparent = 0L );
InterfaceToolTip( Interface* interface, TQWidget* parent = 0L );
/**
* Default Destructor

@ -38,8 +38,8 @@ static const char description[] =
static const char version[] = "0.4.8";
InterfaceTray::InterfaceTray( const TQString& ifname,
TQWidget* tqparent, const char* name )
: KSystemTray( tqparent, name )
TQWidget* parent, const char* name )
: KSystemTray( parent, name )
{
actionCollection()->clear(); // remove the quit entry

@ -42,7 +42,7 @@ public:
* Default Constructor
*/
InterfaceTray( const TQString& ifname,
TQWidget* tqparent = 0L, const char* name = 0L );
TQWidget* parent = 0L, const char* name = 0L );
/**
* Default Destructor

@ -38,8 +38,8 @@ static inline int min( int a, int b )
return ( a < b ? a : b );
}
SignalPlotter::SignalPlotter( TQWidget *tqparent, const char *name )
: TQDialog( tqparent, name ),
SignalPlotter::SignalPlotter( TQWidget *parent, const char *name )
: TQDialog( parent, name ),
mPosInitialized( false ),
mName( name )
{

@ -42,7 +42,7 @@ class SignalPlotter : public TQDialog
TQ_OBJECT
public:
SignalPlotter( TQWidget *tqparent = 0, const char *name = 0 );
SignalPlotter( TQWidget *parent = 0, const char *name = 0 );
~SignalPlotter();
/**

Loading…
Cancel
Save