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/ServiceDlg.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/ServiceDlg.h')
-rw-r--r-- | ksysv/ServiceDlg.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ksysv/ServiceDlg.h b/ksysv/ServiceDlg.h index 34fb69c..84781e7 100644 --- a/ksysv/ServiceDlg.h +++ b/ksysv/ServiceDlg.h @@ -16,7 +16,7 @@ #define KSV_SERVICE_DIALOG_H #include <kdialogbase.h> -#include <qmap.h> +#include <tqmap.h> class KSVDragList; class KSVItem; @@ -28,8 +28,8 @@ class ServiceDlg : public KDialogBase Q_OBJECT public: - ServiceDlg (const QString& action, const QString& label, - QWidget* parent = 0, const char* name = 0); + ServiceDlg (const TQString& action, const TQString& label, + TQWidget* parent = 0, const char* name = 0); virtual ~ServiceDlg(); int count() const; @@ -42,14 +42,14 @@ public slots: void toggle (); private: - QComboBox* mServices; - QMap<QString,const KSVItem*> mMapServices; + TQComboBox* mServices; + TQMap<TQString,const KSVItem*> mMapServices; protected slots: virtual void slotApply(); signals: - void doAction (const QString& on); + void doAction (const TQString& on); void display (bool); }; |