diff options
Diffstat (limited to 'kandy/src/mobilegui.h')
-rw-r--r-- | kandy/src/mobilegui.h | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/kandy/src/mobilegui.h b/kandy/src/mobilegui.h index b3dbd33ff..2d0f3b073 100644 --- a/kandy/src/mobilegui.h +++ b/kandy/src/mobilegui.h @@ -28,7 +28,7 @@ #include "mobilegui_base.h" #include "kandyprefs.h" -#include "qvaluevector.h" +#include "tqvaluevector.h" class CommandScheduler; @@ -41,18 +41,18 @@ class MobileGui : public MobileGui_base, virtual public KandyIface Q_OBJECT public: - MobileGui( CommandScheduler *, KandyPrefs *kprefs, QWidget* parent=0, + MobileGui( CommandScheduler *, KandyPrefs *kprefs, TQWidget* parent=0, const char* name=0, WFlags fl=0 ); ~MobileGui(); void exit(); signals: - void sendCommand( const QString & ); + void sendCommand( const TQString & ); void phonebookRead(); - void statusMessage( const QString & ); - void transientStatusMessage( const QString & ); + void statusMessage( const TQString & ); + void transientStatusMessage( const TQString & ); void connectModem(); void disconnectModem(); @@ -79,18 +79,18 @@ class MobileGui : public MobileGui_base, virtual public KandyIface CommandScheduler *mScheduler; AddressSyncer *mSyncer; KandyPrefs *mPrefs; - QWidget *mparent; + TQWidget *mparent; /* String Formatting Routines */ - QString quote( const QString & ); - QString dequote( const QString & ); - void formatPBName( QString *, QString ); - QString noSpaces( const QString & ); + TQString quote( const TQString & ); + TQString dequote( const TQString & ); + void formatPBName( TQString *, TQString ); + TQString noSpaces( const TQString & ); int firstFreeIndex(); - QString string2GSM( const QString & ); - QString GSM2String( const QString & ); - QString decodeSuffix( const QString & ); - QString stripWhiteSpaces( const QString & ); + TQString string2GSM( const TQString & ); + TQString GSM2String( const TQString & ); + TQString decodeSuffix( const TQString & ); + TQString stripWhiteSpaces( const TQString & ); /* Routines for GUI updates */ void updateKabBook(); @@ -98,12 +98,12 @@ class MobileGui : public MobileGui_base, virtual public KandyIface void disconnectGUI(); /* Phone specific items */ - QString mMobManufacturer; - QString mMobModel; + TQString mMobManufacturer; + TQString mMobModel; unsigned int mPBStartIndex; unsigned int mPBLength; unsigned int mPBNameLength; - QValueVector<bool> mPBIndexOccupied; + TQValueVector<bool> mPBIndexOccupied; bool mMobHasFD; bool mMobHasLD; bool mMobHasME; @@ -114,7 +114,7 @@ class MobileGui : public MobileGui_base, virtual public KandyIface bool mMobHasRC; /* Routines and Flags for asynchronous control flow */ - QString mLastWriteId; + TQString mLastWriteId; bool mComingFromToggleConnection; bool mComingFromReadPhonebook; bool mComingFromSyncPhonebooks; |