diff options
Diffstat (limited to 'ksysv')
-rw-r--r-- | ksysv/ActionList.cpp | 4 | ||||
-rw-r--r-- | ksysv/ActionList.h | 2 | ||||
-rw-r--r-- | ksysv/OldView.cpp | 18 | ||||
-rw-r--r-- | ksysv/OldView.h | 2 | ||||
-rw-r--r-- | ksysv/PreferencesDialog.cpp | 4 | ||||
-rw-r--r-- | ksysv/PreferencesDialog.h | 2 | ||||
-rw-r--r-- | ksysv/Properties.cpp | 8 | ||||
-rw-r--r-- | ksysv/Properties.h | 4 | ||||
-rw-r--r-- | ksysv/RunlevelAuthIcon.cpp | 4 | ||||
-rw-r--r-- | ksysv/RunlevelAuthIcon.h | 2 | ||||
-rw-r--r-- | ksysv/ServiceDlg.cpp | 4 | ||||
-rw-r--r-- | ksysv/ServiceDlg.h | 2 | ||||
-rw-r--r-- | ksysv/SpinBox.cpp | 4 | ||||
-rw-r--r-- | ksysv/SpinBox.h | 2 | ||||
-rw-r--r-- | ksysv/kdltooltip.cpp | 6 | ||||
-rw-r--r-- | ksysv/kdltooltip.h | 2 | ||||
-rw-r--r-- | ksysv/kscroller.cpp | 4 | ||||
-rw-r--r-- | ksysv/kscroller.h | 4 | ||||
-rw-r--r-- | ksysv/ksvconfigwizard.cpp | 6 | ||||
-rw-r--r-- | ksysv/ksvconfigwizard.h | 2 | ||||
-rw-r--r-- | ksysv/ksvdraglist.cpp | 14 | ||||
-rw-r--r-- | ksysv/ksvdraglist.h | 4 | ||||
-rw-r--r-- | ksysv/ksvlookandfeel.cpp | 6 | ||||
-rw-r--r-- | ksysv/ksvlookandfeel.h | 2 | ||||
-rw-r--r-- | ksysv/ksvmiscconfig.cpp | 6 | ||||
-rw-r--r-- | ksysv/ksvmiscconfig.h | 2 | ||||
-rw-r--r-- | ksysv/ksvpathconfig.cpp | 6 | ||||
-rw-r--r-- | ksysv/ksvpathconfig.h | 2 | ||||
-rw-r--r-- | ksysv/trash.cpp | 4 | ||||
-rw-r--r-- | ksysv/trash.h | 2 |
30 files changed, 67 insertions, 67 deletions
diff --git a/ksysv/ActionList.cpp b/ksysv/ActionList.cpp index a5eba09..21caa93 100644 --- a/ksysv/ActionList.cpp +++ b/ksysv/ActionList.cpp @@ -147,8 +147,8 @@ void CompoundAction::undo() // ActionList // ////////////////////////////////// -ActionList::ActionList (TQObject* tqparent, const char* name) - : TQObject(tqparent, name) +ActionList::ActionList (TQObject* parent, const char* name) + : TQObject(parent, name) { setAutoDelete(false); } diff --git a/ksysv/ActionList.h b/ksysv/ActionList.h index 2b4549e..e53639c 100644 --- a/ksysv/ActionList.h +++ b/ksysv/ActionList.h @@ -109,7 +109,7 @@ class ActionList : public TQObject, private TQPtrStack<KSVAction> TQ_OBJECT public: - ActionList (TQObject* tqparent, const char* name); + ActionList (TQObject* parent, const char* name); virtual ~ActionList (); KSVAction* top () const { return TQPtrStack<KSVAction>::top(); } diff --git a/ksysv/OldView.cpp b/ksysv/OldView.cpp index bb3b46e..dabf882 100644 --- a/ksysv/OldView.cpp +++ b/ksysv/OldView.cpp @@ -72,8 +72,8 @@ #include "ActionList.h" #include "TopWidget.h" -KSVContent::KSVContent (KPopupMenu* openWithMenu, KSVTopLevel* tqparent, const char* name) - : TQSplitter (Qt::Vertical, tqparent, name), +KSVContent::KSVContent (KPopupMenu* openWithMenu, KSVTopLevel* parent, const char* name) + : TQSplitter (Qt::Vertical, parent, name), startRL (new KSVDragList*[ksv::runlevelNumber]), stopRL (new KSVDragList*[ksv::runlevelNumber]), conf(KSVConfig::self()), @@ -84,12 +84,12 @@ KSVContent::KSVContent (KPopupMenu* openWithMenu, KSVTopLevel* tqparent, const c { setOpaqueResize( KGlobalSettings::opaqueResize() ); - KXMLGUIFactory* factory = tqparent->factory(); - mItemMenu = static_cast<KPopupMenu*> (factory->container ("item_menu", tqparent)); + KXMLGUIFactory* factory = parent->factory(); + mItemMenu = static_cast<KPopupMenu*> (factory->container ("item_menu", parent)); mItemMenu->insertTitle (i18n ("Runlevel Menu"), -1, 0); - mContextMenu = static_cast<KPopupMenu*> (factory->container ("list_menu", tqparent)); + mContextMenu = static_cast<KPopupMenu*> (factory->container ("list_menu", parent)); mContextMenu->insertTitle (i18n ("Runlevel Menu"), -1, 0); - mScriptMenu = static_cast<KPopupMenu*> (factory->container ("script_menu", tqparent)); + mScriptMenu = static_cast<KPopupMenu*> (factory->container ("script_menu", parent)); mScriptMenu->insertTitle (i18n ("Services Menu"), -1, 0); mScroller = new KScroller (this); @@ -618,7 +618,7 @@ void KSVContent::stopService (const TQString& path) _proc->start(KProcess::NotifyOnExit, KProcess::AllOutput); - // notify tqparent + // notify parent emit sigRun(path + i18n(" stop")); } @@ -644,7 +644,7 @@ void KSVContent::startService (const TQString& path) _proc->start(KProcess::NotifyOnExit, KProcess::AllOutput); - // notify tqparent + // notify parent emit sigRun(path + i18n(" start")); } @@ -684,7 +684,7 @@ void KSVContent::restartService (const TQString& path) _proc->start(KProcess::NotifyOnExit, KProcess::AllOutput); - // notify tqparent + // notify parent emit sigRun(path + i18n(" restart")); } diff --git a/ksysv/OldView.h b/ksysv/OldView.h index 5c87ea6..bd36959 100644 --- a/ksysv/OldView.h +++ b/ksysv/OldView.h @@ -50,7 +50,7 @@ class KSVContent : public TQSplitter TQ_OBJECT public: - KSVContent (KPopupMenu* openWithMenu, KSVTopLevel* tqparent = 0, const char* name = 0); + KSVContent (KPopupMenu* openWithMenu, KSVTopLevel* parent = 0, const char* name = 0); ~KSVContent(); KSVDragList* getOrigin(); diff --git a/ksysv/PreferencesDialog.cpp b/ksysv/PreferencesDialog.cpp index 759fbd8..2c92baa 100644 --- a/ksysv/PreferencesDialog.cpp +++ b/ksysv/PreferencesDialog.cpp @@ -28,9 +28,9 @@ #include "PreferencesDialog.h" -KSVPreferences::KSVPreferences (TQWidget* tqparent) +KSVPreferences::KSVPreferences (TQWidget* parent) : KDialogBase (IconList, i18n("Configure"), Help|Ok|Apply|Cancel, Ok, - tqparent, "KSysV Preferences", true, true), + parent, "KSysV Preferences", true, true), mConfig (KSVConfig::self()) { setMinimumSize (tqsizeHint ()); diff --git a/ksysv/PreferencesDialog.h b/ksysv/PreferencesDialog.h index 7486911..85d0075 100644 --- a/ksysv/PreferencesDialog.h +++ b/ksysv/PreferencesDialog.h @@ -53,7 +53,7 @@ private slots: private: friend class KSVTopLevel; - KSVPreferences (TQWidget* tqparent); + KSVPreferences (TQWidget* parent); void setConfig (); bool checkPaths(); void reReadMessages(); diff --git a/ksysv/Properties.cpp b/ksysv/Properties.cpp index bab4d44..1e2e8bf 100644 --- a/ksysv/Properties.cpp +++ b/ksysv/Properties.cpp @@ -21,9 +21,9 @@ #include "Data.h" #include "Properties.h" -KSVServicePropertiesDialog::KSVServicePropertiesDialog (KSVData& data, TQWidget* tqparent) +KSVServicePropertiesDialog::KSVServicePropertiesDialog (KSVData& data, TQWidget* parent) : KPropertiesDialog (KURL(data.filenameAndPath()), - tqparent, "KSVServicePropertiesDialog", true, false), + parent, "KSVServicePropertiesDialog", true, false), mData (data) { KSVServicesPage* page = new KSVServicesPage (data, this); @@ -100,8 +100,8 @@ void KSVServicePropertiesDialog::doRestart () } -KSVEntryPropertiesDialog::KSVEntryPropertiesDialog (KSVData& data, TQWidget* tqparent) - : KPropertiesDialog (data.label(), tqparent, "KSVEntryPropertiesDialog", true), +KSVEntryPropertiesDialog::KSVEntryPropertiesDialog (KSVData& data, TQWidget* parent) + : KPropertiesDialog (data.label(), parent, "KSVEntryPropertiesDialog", true), mData (data) { KSVEntryPage* page1 = new KSVEntryPage (data, this); diff --git a/ksysv/Properties.h b/ksysv/Properties.h index b9d7a66..37c95ae 100644 --- a/ksysv/Properties.h +++ b/ksysv/Properties.h @@ -20,7 +20,7 @@ class KSVServicePropertiesDialog : public KPropertiesDialog TQ_OBJECT public: - KSVServicePropertiesDialog (KSVData& data, TQWidget* tqparent); + KSVServicePropertiesDialog (KSVData& data, TQWidget* parent); virtual ~KSVServicePropertiesDialog (); signals: @@ -46,7 +46,7 @@ class KSVEntryPropertiesDialog : public KPropertiesDialog TQ_OBJECT public: - KSVEntryPropertiesDialog (KSVData& data, TQWidget* tqparent); + KSVEntryPropertiesDialog (KSVData& data, TQWidget* parent); virtual ~KSVEntryPropertiesDialog (); signals: diff --git a/ksysv/RunlevelAuthIcon.cpp b/ksysv/RunlevelAuthIcon.cpp index 391fe3f..5c31402 100644 --- a/ksysv/RunlevelAuthIcon.cpp +++ b/ksysv/RunlevelAuthIcon.cpp @@ -15,8 +15,8 @@ #include <tqlabel.h> RunlevelAuthIcon::RunlevelAuthIcon (const TQString& servicesPath, const TQString& runlevelPath, - TQWidget* tqparent, const char* name) - : KAuthIcon (tqparent, name), + TQWidget* parent, const char* name) + : KAuthIcon (parent, name), mTimer (new TQTimer (this)), mServicesInfo (new TQFileInfo (servicesPath)), mRLInfo (new TQFileInfo* [ksv::runlevelNumber]), diff --git a/ksysv/RunlevelAuthIcon.h b/ksysv/RunlevelAuthIcon.h index ff514a5..f2aeee6 100644 --- a/ksysv/RunlevelAuthIcon.h +++ b/ksysv/RunlevelAuthIcon.h @@ -15,7 +15,7 @@ class RunlevelAuthIcon : public KAuthIcon public: RunlevelAuthIcon (const TQString& scriptPath, const TQString& runlevelPath, - TQWidget* tqparent = 0L, const char* name = 0L); + TQWidget* parent = 0L, const char* name = 0L); virtual ~RunlevelAuthIcon (); diff --git a/ksysv/ServiceDlg.cpp b/ksysv/ServiceDlg.cpp index aac5bca..b4687d6 100644 --- a/ksysv/ServiceDlg.cpp +++ b/ksysv/ServiceDlg.cpp @@ -28,8 +28,8 @@ #define MIN_SIZE(A) A->setMinimumSize(A->tqsizeHint()) ServiceDlg::ServiceDlg (const TQString& action, const TQString& label, - TQWidget* tqparent, const char* name) - : KDialogBase (tqparent, name, false, action, Apply|Close, Apply, true) + TQWidget* parent, const char* name) + : KDialogBase (parent, name, false, action, Apply|Close, Apply, true) { TQWidget* page = new TQWidget (this); diff --git a/ksysv/ServiceDlg.h b/ksysv/ServiceDlg.h index 2cec43e..28f8c0e 100644 --- a/ksysv/ServiceDlg.h +++ b/ksysv/ServiceDlg.h @@ -30,7 +30,7 @@ class ServiceDlg : public KDialogBase public: ServiceDlg (const TQString& action, const TQString& label, - TQWidget* tqparent = 0, const char* name = 0); + TQWidget* parent = 0, const char* name = 0); virtual ~ServiceDlg(); int count() const; diff --git a/ksysv/SpinBox.cpp b/ksysv/SpinBox.cpp index fae199b..72ca85e 100644 --- a/ksysv/SpinBox.cpp +++ b/ksysv/SpinBox.cpp @@ -7,8 +7,8 @@ #include "ksv_core.h" #include "SpinBox.h" -KSVSpinBox::KSVSpinBox (TQWidget* tqparent, const char* name) - : TQSpinBox (0, 99, 1, tqparent, name), +KSVSpinBox::KSVSpinBox (TQWidget* parent, const char* name) + : TQSpinBox (0, 99, 1, parent, name), KCompletionBase (), mClearedSelection (false) { diff --git a/ksysv/SpinBox.h b/ksysv/SpinBox.h index ce679bb..cdd0382 100644 --- a/ksysv/SpinBox.h +++ b/ksysv/SpinBox.h @@ -13,7 +13,7 @@ class KSVSpinBox : public TQSpinBox, public KCompletionBase TQ_OBJECT public: - KSVSpinBox (TQWidget* tqparent, const char* name = 0L); + KSVSpinBox (TQWidget* parent, const char* name = 0L); virtual ~KSVSpinBox (); virtual bool eventFilter (TQObject*, TQEvent*); diff --git a/ksysv/kdltooltip.cpp b/ksysv/kdltooltip.cpp index 0260b5d..95af765 100644 --- a/ksysv/kdltooltip.cpp +++ b/ksysv/kdltooltip.cpp @@ -21,9 +21,9 @@ #include "ksvdraglist.h" #include "kdltooltip.h" -KDLToolTip::KDLToolTip (KSVDragList *tqparent, TQToolTipGroup* group) - : TQToolTip(tqparent, group), - mParent (tqparent) +KDLToolTip::KDLToolTip (KSVDragList *parent, TQToolTipGroup* group) + : TQToolTip(parent, group), + mParent (parent) { } diff --git a/ksysv/kdltooltip.h b/ksysv/kdltooltip.h index 66edff7..a1b45b4 100644 --- a/ksysv/kdltooltip.h +++ b/ksysv/kdltooltip.h @@ -26,7 +26,7 @@ class KSVDragList; class KDLToolTip : public TQToolTip { public: - KDLToolTip (KSVDragList *tqparent, TQToolTipGroup* group = 0L); + KDLToolTip (KSVDragList *parent, TQToolTipGroup* group = 0L); virtual ~KDLToolTip(); protected: diff --git a/ksysv/kscroller.cpp b/ksysv/kscroller.cpp index 4ac01cc..986e805 100644 --- a/ksysv/kscroller.cpp +++ b/ksysv/kscroller.cpp @@ -23,8 +23,8 @@ public: TQWidget* setCornerWidget; }; -KScroller::KScroller (TQWidget* tqparent, const char* name) - : TQFrame (tqparent, name), +KScroller::KScroller (TQWidget* parent, const char* name) + : TQFrame (parent, name), d (new KScrollerPrivate()), mVertical (new TQScrollBar (Qt::Vertical, this)), mHorizontal (new TQScrollBar (Qt::Horizontal, this)), diff --git a/ksysv/kscroller.h b/ksysv/kscroller.h index 9bcddab..77a78f9 100644 --- a/ksysv/kscroller.h +++ b/ksysv/kscroller.h @@ -22,10 +22,10 @@ public: /** * Constructor. * - * @param tqparent the tqparent of this widget (passed on as ususal). + * @param parent the parent of this widget (passed on as ususal). * @param name the name of this widget (as above). */ - KScroller (TQWidget* tqparent = 0L, const char* name = 0L); + KScroller (TQWidget* parent = 0L, const char* name = 0L); /** * Destructor. diff --git a/ksysv/ksvconfigwizard.cpp b/ksysv/ksvconfigwizard.cpp index a70ea7d..a869d46 100644 --- a/ksysv/ksvconfigwizard.cpp +++ b/ksysv/ksvconfigwizard.cpp @@ -33,14 +33,14 @@ #include <tqpushbutton.h> /* - * Constructs a KSVConfigWizard which is a child of 'tqparent', with the + * Constructs a KSVConfigWizard which is a child of 'parent', with the * name 'name' and widget flags set to 'f' * * The wizard will by default be modeless, unless you set 'modal' to * TRUE to construct a modal wizard. */ -KSVConfigWizard::KSVConfigWizard (TQWidget* tqparent, const char* name, bool modal, WFlags fl) - : ConfigWizard (tqparent, name, modal, fl), +KSVConfigWizard::KSVConfigWizard (TQWidget* parent, const char* name, bool modal, WFlags fl) + : ConfigWizard (parent, name, modal, fl), mChosenDistribution (Debian) { mDistributionBoxLayout->setSpacing (KDialog::spacingHint()); diff --git a/ksysv/ksvconfigwizard.h b/ksysv/ksvconfigwizard.h index 0598520..78bd000 100644 --- a/ksysv/ksvconfigwizard.h +++ b/ksysv/ksvconfigwizard.h @@ -35,7 +35,7 @@ class KSVConfigWizard : public ConfigWizard TQ_OBJECT public: - KSVConfigWizard( TQWidget* tqparent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 ); + KSVConfigWizard( TQWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 ); ~KSVConfigWizard(); public: diff --git a/ksysv/ksvdraglist.cpp b/ksysv/ksvdraglist.cpp index 52e8ad6..6c57f55 100644 --- a/ksysv/ksvdraglist.cpp +++ b/ksysv/ksvdraglist.cpp @@ -214,8 +214,8 @@ TQPixmap KSVItem::paintDragIcon (const TQFont& font, const TQColorGroup&) const label()); p.end(); - TQBitmap tqmask (width, height); - p.begin (&tqmask); + TQBitmap mask (width, height); + p.begin (&mask); p.setFont (font); p.fillRect (0, 0, width, height, color0); @@ -234,7 +234,7 @@ TQPixmap KSVItem::paintDragIcon (const TQFont& font, const TQColorGroup&) const p.end(); - result.setMask(tqmask); + result.setMask(mask); result.setOptimization(TQPixmap::BestOptim); return result; } @@ -309,8 +309,8 @@ void KSVItem::setOriginalRunlevel (const TQString& rl) // KSVDragList //----------------------- -KSVDragList::KSVDragList ( TQWidget* tqparent, const char* name ) - : KListView (tqparent, name), +KSVDragList::KSVDragList ( TQWidget* parent, const char* name ) + : KListView (parent, name), mItemToDrag (0L), mDragMenu (new KPopupMenu (this)), mDragCopyMenu (new KPopupMenu (this)), @@ -776,8 +776,8 @@ void KSVDragList::setEnabled (bool enable) // KServiceDragList -KServiceDragList::KServiceDragList (TQWidget* tqparent, const char* name) - : KSVDragList (tqparent, name) +KServiceDragList::KServiceDragList (TQWidget* parent, const char* name) + : KSVDragList (parent, name) { } diff --git a/ksysv/ksvdraglist.h b/ksysv/ksvdraglist.h index 6b1ab7e..a54738d 100644 --- a/ksysv/ksvdraglist.h +++ b/ksysv/ksvdraglist.h @@ -155,7 +155,7 @@ class KSVDragList : public KListView TQ_OBJECT public: - KSVDragList ( TQWidget* tqparent = 0, const char* name = 0 ); + KSVDragList ( TQWidget* parent = 0, const char* name = 0 ); virtual ~KSVDragList(); virtual void clear(); @@ -268,7 +268,7 @@ signals: class KServiceDragList : public KSVDragList { public: - KServiceDragList (TQWidget* tqparent = 0L, const char* name = 0L); + KServiceDragList (TQWidget* parent = 0L, const char* name = 0L); virtual ~KServiceDragList (); protected: diff --git a/ksysv/ksvlookandfeel.cpp b/ksysv/ksvlookandfeel.cpp index c63c49d..9c68cfb 100644 --- a/ksysv/ksvlookandfeel.cpp +++ b/ksysv/ksvlookandfeel.cpp @@ -32,11 +32,11 @@ #include <kfontdialog.h> /* - * Constructs a KSVLookAndFeel which is a child of 'tqparent', with the + * Constructs a KSVLookAndFeel which is a child of 'parent', with the * name 'name' and widget flags set to 'f' */ -KSVLookAndFeel::KSVLookAndFeel( TQWidget* tqparent, const char* name, WFlags fl ) - : LookAndFeel( tqparent, name, fl ) +KSVLookAndFeel::KSVLookAndFeel( TQWidget* parent, const char* name, WFlags fl ) + : LookAndFeel( parent, name, fl ) { mTopLayout->setSpacing (KDialog::spacingHint()); mColorGrid->setSpacing (KDialog::spacingHint()); diff --git a/ksysv/ksvlookandfeel.h b/ksysv/ksvlookandfeel.h index 009c4a6..0b58d01 100644 --- a/ksysv/ksvlookandfeel.h +++ b/ksysv/ksvlookandfeel.h @@ -15,7 +15,7 @@ class KSVLookAndFeel : public LookAndFeel TQ_OBJECT public: - KSVLookAndFeel( TQWidget* tqparent = 0, const char* name = 0, WFlags fl = 0 ); + KSVLookAndFeel( TQWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); ~KSVLookAndFeel(); inline const TQFont& serviceFont() const { return mServiceFont; } diff --git a/ksysv/ksvmiscconfig.cpp b/ksysv/ksvmiscconfig.cpp index 69b596a..d894262 100644 --- a/ksysv/ksvmiscconfig.cpp +++ b/ksysv/ksvmiscconfig.cpp @@ -31,11 +31,11 @@ #include <kdialog.h> /* - * Constructs a KSVMiscConfig which is a child of 'tqparent', with the + * Constructs a KSVMiscConfig which is a child of 'parent', with the * name 'name' and widget flags set to 'f' */ -KSVMiscConfig::KSVMiscConfig( TQWidget* tqparent, const char* name, WFlags fl ) - : MiscConfiguration( tqparent, name, fl ) +KSVMiscConfig::KSVMiscConfig( TQWidget* parent, const char* name, WFlags fl ) + : MiscConfiguration( parent, name, fl ) { mSpacer->setFixedHeight (KDialog::spacingHint()); diff --git a/ksysv/ksvmiscconfig.h b/ksysv/ksvmiscconfig.h index 6d1d1db..c4e1811 100644 --- a/ksysv/ksvmiscconfig.h +++ b/ksysv/ksvmiscconfig.h @@ -33,7 +33,7 @@ class KSVMiscConfig : public MiscConfiguration TQ_OBJECT public: - KSVMiscConfig( TQWidget* tqparent = 0, const char* name = 0, WFlags fl = 0 ); + KSVMiscConfig( TQWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); ~KSVMiscConfig(); signals: diff --git a/ksysv/ksvpathconfig.cpp b/ksysv/ksvpathconfig.cpp index f7e5f52..5f1193a 100644 --- a/ksysv/ksvpathconfig.cpp +++ b/ksysv/ksvpathconfig.cpp @@ -29,11 +29,11 @@ #include <kfiledialog.h> /* - * Constructs a KSVPathConfig which is a child of 'tqparent', with the + * Constructs a KSVPathConfig which is a child of 'parent', with the * name 'name' and widget flags set to 'f' */ -KSVPathConfig::KSVPathConfig( TQWidget* tqparent, const char* name, WFlags fl ) - : PathConfiguration( tqparent, name, fl ) +KSVPathConfig::KSVPathConfig( TQWidget* parent, const char* name, WFlags fl ) + : PathConfiguration( parent, name, fl ) { mSpacer->setFixedHeight (KDialog::spacingHint()); } diff --git a/ksysv/ksvpathconfig.h b/ksysv/ksvpathconfig.h index cf06bf2..bf063e2 100644 --- a/ksysv/ksvpathconfig.h +++ b/ksysv/ksvpathconfig.h @@ -33,7 +33,7 @@ class KSVPathConfig : public PathConfiguration TQ_OBJECT public: - KSVPathConfig( TQWidget* tqparent = 0, const char* name = 0, WFlags fl = 0 ); + KSVPathConfig( TQWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); ~KSVPathConfig(); signals: diff --git a/ksysv/trash.cpp b/ksysv/trash.cpp index dcbce00..089ebe5 100644 --- a/ksysv/trash.cpp +++ b/ksysv/trash.cpp @@ -29,8 +29,8 @@ #include "ActionList.h" #include "trash.h" -KSVTrash::KSVTrash (TQWidget* tqparent, const char* name) - : TQFrame (tqparent, name), +KSVTrash::KSVTrash (TQWidget* parent, const char* name) + : TQFrame (parent, name), mKIL (KGlobal::iconLoader()), mLabel (new TQLabel(this)), mOpen (false) diff --git a/ksysv/trash.h b/ksysv/trash.h index e341647..eb62562 100644 --- a/ksysv/trash.h +++ b/ksysv/trash.h @@ -31,7 +31,7 @@ class KSVTrash : public TQFrame TQ_OBJECT public: - KSVTrash (TQWidget* tqparent = 0, const char* name = 0); + KSVTrash (TQWidget* parent = 0, const char* name = 0); virtual ~KSVTrash(); virtual TQSize tqsizeHint() const; |