diff options
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); }; |