rename the following methods:

tqparent parent
tqmask mask


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

@ -26,8 +26,8 @@
#include "addnewstreamimpl.h" #include "addnewstreamimpl.h"
AddNewStreamImpl::AddNewStreamImpl( TQWidget* tqparent, const char* name ) AddNewStreamImpl::AddNewStreamImpl( TQWidget* parent, const char* name )
: AddNewStream( tqparent,name, true ) : AddNewStream( parent,name, true )
{ {
connect( d_okButton, TQT_SIGNAL( clicked()), this, TQT_SLOT( okButtonClicked()) ); connect( d_okButton, TQT_SIGNAL( clicked()), this, TQT_SLOT( okButtonClicked()) );
connect( d_cancelButton, TQT_SIGNAL( clicked()), this, TQT_SLOT( cancelButtonClicked()) ); connect( d_cancelButton, TQT_SIGNAL( clicked()), this, TQT_SLOT( cancelButtonClicked()) );

@ -30,7 +30,7 @@ class AddNewStreamImpl : public AddNewStream
public: public:
AddNewStreamImpl( TQWidget* tqparent = 0, const char* name = 0 ); AddNewStreamImpl( TQWidget* parent = 0, const char* name = 0 );
~AddNewStreamImpl(); ~AddNewStreamImpl();
protected: protected:

@ -48,8 +48,8 @@
KStreamRipper::KStreamRipper( TQWidget* tqparent, const char* name ) KStreamRipper::KStreamRipper( TQWidget* parent, const char* name )
: KStreamRipperBase( tqparent,name ) : KStreamRipperBase( parent,name )
#if KDE_IS_VERSION(3,3,90) #if KDE_IS_VERSION(3,3,90)
, m_browser("_shoutcast._tcp",0,true) , m_browser("_shoutcast._tcp",0,true)
#endif #endif

@ -43,7 +43,7 @@ class KStreamRipper : public KStreamRipperBase
public: public:
KStreamRipper( TQWidget* tqparent = 0, const char* name = 0 ); KStreamRipper( TQWidget* parent = 0, const char* name = 0 );
~KStreamRipper(); ~KStreamRipper();
virtual void closeEvent( TQCloseEvent* ); virtual void closeEvent( TQCloseEvent* );

@ -22,8 +22,8 @@
#include "processcontroller.h" #include "processcontroller.h"
#include "processlistviewitem.h" #include "processlistviewitem.h"
ProcessController::ProcessController(ProcessListViewItem * tqparent) ProcessController::ProcessController(ProcessListViewItem * parent)
: TQObject((TQObject *)tqparent), myParent(tqparent), mytqStatus(false), myAutomatic(false), myProcess(new TQProcess(this)) : TQObject((TQObject *)parent), myParent(parent), mytqStatus(false), myAutomatic(false), myProcess(new TQProcess(this))
{ {
connect (myProcess, TQT_SIGNAL( readyReadStdout() ), (ProcessController *) this, TQT_SLOT( readStdout()) ); connect (myProcess, TQT_SIGNAL( readyReadStdout() ), (ProcessController *) this, TQT_SLOT( readStdout()) );
// connect (myProcess, TQT_SIGNAL( destroyed() ), myProcess, TQT_SLOT( kill()) ); // connect (myProcess, TQT_SIGNAL( destroyed() ), myProcess, TQT_SLOT( kill()) );

@ -37,7 +37,7 @@ class ProcessController : public TQObject
Q_OBJECT Q_OBJECT
TQ_OBJECT TQ_OBJECT
public: public:
ProcessController(ProcessListViewItem * tqparent); ProcessController(ProcessListViewItem * parent);
~ProcessController(); ~ProcessController();
bool gettqStatus(); bool gettqStatus();

@ -24,27 +24,27 @@
#include "processlistviewitem.h" #include "processlistviewitem.h"
#include "processcontroller.h" #include "processcontroller.h"
ProcessListViewItem::ProcessListViewItem( TQListView * tqparent ) ProcessListViewItem::ProcessListViewItem( TQListView * parent )
: TQListViewItem(tqparent), myProcessController(new ProcessController(this)) : TQListViewItem(parent), myProcessController(new ProcessController(this))
{ {
} }
ProcessListViewItem::ProcessListViewItem( TQListViewItem * tqparent ) ProcessListViewItem::ProcessListViewItem( TQListViewItem * parent )
: TQListViewItem(tqparent), myProcessController(new ProcessController(this)) : TQListViewItem(parent), myProcessController(new ProcessController(this))
{ {
} }
ProcessListViewItem::ProcessListViewItem( TQListView * tqparent, TQListViewItem * after ) ProcessListViewItem::ProcessListViewItem( TQListView * parent, TQListViewItem * after )
: TQListViewItem(tqparent, after), myProcessController(new ProcessController(this)) : TQListViewItem(parent, after), myProcessController(new ProcessController(this))
{ {
} }
ProcessListViewItem::ProcessListViewItem( TQListViewItem * tqparent, TQListViewItem * after ) ProcessListViewItem::ProcessListViewItem( TQListViewItem * parent, TQListViewItem * after )
: TQListViewItem(tqparent, after), myProcessController(new ProcessController(this)) : TQListViewItem(parent, after), myProcessController(new ProcessController(this))
{ {
} }
ProcessListViewItem::ProcessListViewItem( TQListView * tqparent, ProcessListViewItem::ProcessListViewItem( TQListView * parent,
TQString label1, TQString label1,
TQString label2, TQString label2,
TQString label3, TQString label3,
@ -53,11 +53,11 @@ ProcessListViewItem::ProcessListViewItem( TQListView * tqparent,
TQString label6, TQString label6,
TQString label7, TQString label7,
TQString label8 ) TQString label8 )
: TQListViewItem(tqparent, label1, label2, label3, label4, label5, label6, label7, label8), myProcessController(new ProcessController(this)) : TQListViewItem(parent, label1, label2, label3, label4, label5, label6, label7, label8), myProcessController(new ProcessController(this))
{ {
} }
ProcessListViewItem::ProcessListViewItem( TQListViewItem * tqparent, ProcessListViewItem::ProcessListViewItem( TQListViewItem * parent,
TQString label1, TQString label1,
TQString label2, TQString label2,
TQString label3, TQString label3,
@ -66,11 +66,11 @@ ProcessListViewItem::ProcessListViewItem( TQListViewItem * tqparent,
TQString label6, TQString label6,
TQString label7, TQString label7,
TQString label8 ) TQString label8 )
: TQListViewItem(tqparent, label1, label2, label3, label4, label5, label6, label7, label8), myProcessController(new ProcessController(this)) : TQListViewItem(parent, label1, label2, label3, label4, label5, label6, label7, label8), myProcessController(new ProcessController(this))
{ {
} }
ProcessListViewItem::ProcessListViewItem( TQListView * tqparent, TQListViewItem * after, ProcessListViewItem::ProcessListViewItem( TQListView * parent, TQListViewItem * after,
TQString label1, TQString label1,
TQString label2, TQString label2,
TQString label3, TQString label3,
@ -79,12 +79,12 @@ ProcessListViewItem::ProcessListViewItem( TQListView * tqparent, TQListViewItem
TQString label6, TQString label6,
TQString label7, TQString label7,
TQString label8 ) TQString label8 )
: TQListViewItem(tqparent, after, label1, label2, label3, label4, label5, label6, label7, label8), : TQListViewItem(parent, after, label1, label2, label3, label4, label5, label6, label7, label8),
myProcessController(new ProcessController(this)) myProcessController(new ProcessController(this))
{ {
} }
ProcessListViewItem::ProcessListViewItem( TQListViewItem * tqparent, TQListViewItem * after, ProcessListViewItem::ProcessListViewItem( TQListViewItem * parent, TQListViewItem * after,
TQString label1, TQString label1,
TQString label2, TQString label2,
TQString label3, TQString label3,
@ -93,7 +93,7 @@ ProcessListViewItem::ProcessListViewItem( TQListViewItem * tqparent, TQListViewI
TQString label6, TQString label6,
TQString label7, TQString label7,
TQString label8 ) TQString label8 )
: TQListViewItem(tqparent, after, label1, label2, label3, label4, label5, label6, label7, label8), : TQListViewItem(parent, after, label1, label2, label3, label4, label5, label6, label7, label8),
myProcessController(new ProcessController(this)) myProcessController(new ProcessController(this))
{ {
} }

@ -34,28 +34,28 @@ class ProcessListViewItem : public TQObject, public TQListViewItem
TQ_OBJECT TQ_OBJECT
public: public:
ProcessListViewItem( TQListView * tqparent ); ProcessListViewItem( TQListView * parent );
ProcessListViewItem( TQListViewItem * tqparent ); ProcessListViewItem( TQListViewItem * parent );
ProcessListViewItem( TQListView * tqparent, TQListViewItem * after ); ProcessListViewItem( TQListView * parent, TQListViewItem * after );
ProcessListViewItem( TQListViewItem * tqparent, TQListViewItem * after ); ProcessListViewItem( TQListViewItem * parent, TQListViewItem * after );
ProcessListViewItem( TQListView * tqparent, ProcessListViewItem( TQListView * parent,
TQString, TQString = TQString(), TQString, TQString = TQString(),
TQString = TQString(), TQString = TQString(), TQString = TQString(), TQString = TQString(),
TQString = TQString(), TQString = TQString(), TQString = TQString(), TQString = TQString(),
TQString = TQString(), TQString = TQString() ); TQString = TQString(), TQString = TQString() );
ProcessListViewItem( TQListViewItem * tqparent, ProcessListViewItem( TQListViewItem * parent,
TQString, TQString = TQString(), TQString, TQString = TQString(),
TQString = TQString(), TQString = TQString(), TQString = TQString(), TQString = TQString(),
TQString = TQString(), TQString = TQString(), TQString = TQString(), TQString = TQString(),
TQString = TQString(), TQString = TQString() ); TQString = TQString(), TQString = TQString() );
ProcessListViewItem( TQListView * tqparent, TQListViewItem * after, ProcessListViewItem( TQListView * parent, TQListViewItem * after,
TQString, TQString = TQString(), TQString, TQString = TQString(),
TQString = TQString(), TQString = TQString(), TQString = TQString(), TQString = TQString(),
TQString = TQString(), TQString = TQString(), TQString = TQString(), TQString = TQString(),
TQString = TQString(), TQString = TQString() ); TQString = TQString(), TQString = TQString() );
ProcessListViewItem( TQListViewItem * tqparent, TQListViewItem * after, ProcessListViewItem( TQListViewItem * parent, TQListViewItem * after,
TQString, TQString = TQString(), TQString, TQString = TQString(),
TQString = TQString(), TQString = TQString(), TQString = TQString(), TQString = TQString(),
TQString = TQString(), TQString = TQString(), TQString = TQString(), TQString = TQString(),

Loading…
Cancel
Save