diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:25:18 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:25:18 +0000 |
commit | aa3a1ca934bc541bddd3fa136a85f106f7da266e (patch) | |
tree | 9ad0b795aed8fa4ac30c2fe0fd1aacb8175714c0 /ksysv/Properties.h | |
parent | b10cf7066791a2f362495890cd50c984e8025412 (diff) | |
download | tdeadmin-aa3a1ca934bc541bddd3fa136a85f106f7da266e.tar.gz tdeadmin-aa3a1ca934bc541bddd3fa136a85f106f7da266e.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeadmin@1157635 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ksysv/Properties.h')
-rw-r--r-- | ksysv/Properties.h | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/ksysv/Properties.h b/ksysv/Properties.h index 0e3225d..d26cb91 100644 --- a/ksysv/Properties.h +++ b/ksysv/Properties.h @@ -19,14 +19,14 @@ class KSVServicePropertiesDialog : public KPropertiesDialog Q_OBJECT public: - KSVServicePropertiesDialog (KSVData& data, QWidget* parent); + KSVServicePropertiesDialog (KSVData& data, TQWidget* parent); virtual ~KSVServicePropertiesDialog (); signals: - void startService (const QString&); - void stopService (const QString&); - void restartService (const QString&); - void editService (const QString&); + void startService (const TQString&); + void stopService (const TQString&); + void restartService (const TQString&); + void editService (const TQString&); private slots: void doEdit (); @@ -44,14 +44,14 @@ class KSVEntryPropertiesDialog : public KPropertiesDialog Q_OBJECT public: - KSVEntryPropertiesDialog (KSVData& data, QWidget* parent); + KSVEntryPropertiesDialog (KSVData& data, TQWidget* parent); virtual ~KSVEntryPropertiesDialog (); signals: - void startService (const QString&); - void stopService (const QString&); - void restartService (const QString&); - void editService (const QString&); + void startService (const TQString&); + void stopService (const TQString&); + void restartService (const TQString&); + void editService (const TQString&); private slots: void doEdit (); @@ -80,12 +80,12 @@ private slots: private: KSVData& mData; - QFrame* mPage; + TQFrame* mPage; int mIndex; KLineEdit* mServiceEdit; KLineEdit* mLabelEdit; - QSpinBox* mNumberEdit; + TQSpinBox* mNumberEdit; }; class KSVServicesPage : public KPropsDlgPlugin @@ -102,8 +102,8 @@ public: private: KSVData& mData; - QVBox* mPage; - QTextView* mDesc; + TQVBox* mPage; + TQTextView* mDesc; int mIndex; }; |