diff options
Diffstat (limited to 'kmobile/kmobileclient.h')
-rw-r--r-- | kmobile/kmobileclient.h | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/kmobile/kmobileclient.h b/kmobile/kmobileclient.h index ca4b5c182..8ad6204ac 100644 --- a/kmobile/kmobileclient.h +++ b/kmobile/kmobileclient.h @@ -15,7 +15,7 @@ public: KMobileClient(); virtual ~KMobileClient(); - QCString appId() const { return m_clientAppId; }; + TQCString appId() const { return m_clientAppId; }; bool isKMobileAvailable(); bool startKMobileApplication(); @@ -23,39 +23,39 @@ public: /** * DCOP implementation */ - QStringList deviceNames(); + TQStringList deviceNames(); - void removeDevice( QString deviceName ); - void configDevice( QString deviceName ); + void removeDevice( TQString deviceName ); + void configDevice( TQString deviceName ); - bool connectDevice( QString deviceName ); - bool disconnectDevice( QString deviceName ); - bool connected( QString deviceName ); + bool connectDevice( TQString deviceName ); + bool disconnectDevice( TQString deviceName ); + bool connected( TQString deviceName ); - QString deviceClassName( QString deviceName ); - QString deviceName( QString deviceName ); - QString revision( QString deviceName ); - int classType( QString deviceName ); + TQString deviceClassName( TQString deviceName ); + TQString deviceName( TQString deviceName ); + TQString revision( TQString deviceName ); + int classType( TQString deviceName ); - int capabilities( QString deviceName ); - QString nameForCap( QString deviceName, int cap ); + int capabilities( TQString deviceName ); + TQString nameForCap( TQString deviceName, int cap ); - QString iconFileName( QString deviceName ); + TQString iconFileName( TQString deviceName ); - int numAddresses( QString deviceName ); - QString readAddress( QString deviceName, int index ); - bool storeAddress( QString deviceName, int index, QString vcard, bool append ); + int numAddresses( TQString deviceName ); + TQString readAddress( TQString deviceName, int index ); + bool storeAddress( TQString deviceName, int index, TQString vcard, bool append ); - int numCalendarEntries( QString deviceName ); + int numCalendarEntries( TQString deviceName ); - int numNotes( QString deviceName ); - QString readNote( QString deviceName, int index ); - bool storeNote( QString deviceName, int index, QString note ); + int numNotes( TQString deviceName ); + TQString readNote( TQString deviceName, int index ); + bool storeNote( TQString deviceName, int index, TQString note ); private: - QCString m_clientAppId; - QCString m_kmobileApp; - QCString m_kmobileObj; + TQCString m_clientAppId; + TQCString m_kmobileApp; + TQCString m_kmobileObj; }; |