diff options
Diffstat (limited to 'kpilot/kpilot/kpilotProbeDialog.h')
-rw-r--r-- | kpilot/kpilot/kpilotProbeDialog.h | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/kpilot/kpilot/kpilotProbeDialog.h b/kpilot/kpilot/kpilotProbeDialog.h index be02dff6e..ccfa7fee3 100644 --- a/kpilot/kpilot/kpilotProbeDialog.h +++ b/kpilot/kpilot/kpilotProbeDialog.h @@ -39,21 +39,21 @@ class QGridLayout; template <class T> class QValueList; template<class Key, class T> class QMap; -typedef QValueList<KPilotDeviceLink*> PilotLinkList; +typedef TQValueList<KPilotDeviceLink*> PilotLinkList; -typedef QMap<QString, KPilotDeviceLink*> PilotLinkMap; +typedef TQMap<TQString, KPilotDeviceLink*> PilotLinkMap; class ProbeDialog : public KDialogBase { Q_OBJECT public: - ProbeDialog(QWidget *p=0L,const char *n=0L); + ProbeDialog(TQWidget *p=0L,const char *n=0L); ~ProbeDialog(); bool detected() const { return mDetected; } - QString userName() const { return mUserName; } - QString device() const { return mDevice; } - QStringList dbs() const { return mDBs; } + TQString userName() const { return mUserName; } + TQString device() const { return mDevice; } + TQStringList dbs() const { return mDBs; } protected slots: @@ -70,33 +70,33 @@ public slots: int exec(); void slotUser1 () { startDetection(); } protected: - QLabel* fInfoText; - QGroupBox* fResultsGroup; - QLabel* fUserLabel; - QLabel* fDeviceLabel; - QLabel* fUser; - QLabel* fDevice; - QGroupBox* fStatusGroup; - QLabel* fStatus; + TQLabel* fInfoText; + TQGroupBox* fResultsGroup; + TQLabel* fUserLabel; + TQLabel* fDeviceLabel; + TQLabel* fUser; + TQLabel* fDevice; + TQGroupBox* fStatusGroup; + TQLabel* fStatus; KProgress* fProgress; - QTimer* fProcessEventsTimer; - QTimer* fTimeoutTimer; - QTimer* fProgressTimer; - QTimer* fRotateLinksTimer; + TQTimer* fProcessEventsTimer; + TQTimer* fTimeoutTimer; + TQTimer* fProgressTimer; + TQTimer* fRotateLinksTimer; protected: - QGridLayout* fResultsGroupLayout; - QGridLayout* fStatusGroupLayout; + TQGridLayout* fResultsGroupLayout; + TQGridLayout* fStatusGroupLayout; - QStringList mDevicesToProbe[3]; + TQStringList mDevicesToProbe[3]; PilotLinkList mDeviceLinks[3]; int mProbeDevicesIndex; KPilotDeviceLink *mActiveLink; bool mDetected; - QString mUserName; - QString mDevice; - QStringList mDBs; + TQString mUserName; + TQString mDevice; + TQStringList mDBs; } ; #endif |