summaryrefslogtreecommitdiffstats
path: root/kmobile/devices/skeleton/skeleton.h
diff options
context:
space:
mode:
Diffstat (limited to 'kmobile/devices/skeleton/skeleton.h')
-rw-r--r--kmobile/devices/skeleton/skeleton.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/kmobile/devices/skeleton/skeleton.h b/kmobile/devices/skeleton/skeleton.h
index eb0d7db0..de57947a 100644
--- a/kmobile/devices/skeleton/skeleton.h
+++ b/kmobile/devices/skeleton/skeleton.h
@@ -30,25 +30,25 @@ class KMobileSkeleton : public KMobileDevice
{
Q_OBJECT
public:
- KMobileSkeleton( QObject *obj=0, const char *name=0, const QStringList &args=QStringList() );
+ KMobileSkeleton( TQObject *obj=0, const char *name=0, const TQStringList &args=TQStringList() );
~KMobileSkeleton();
// createObject needs to be reimplemented by every KMobileDevice driver
- QObject *createObject( QObject *parent=0, const char *name=0,
- const char *classname="QObject", const QStringList &args=QStringList() );
+ TQObject *createObject( TQObject *parent=0, const char *name=0,
+ const char *classname="TQObject", const TQStringList &args=TQStringList() );
// connect, disconnect and current status
- bool connectDevice(QWidget *parent);
- bool disconnectDevice(QWidget *parent);
+ bool connectDevice(TQWidget *parent);
+ bool disconnectDevice(TQWidget *parent);
// returns true, if this device is read-only (default: false)
bool isReadOnly() const;
// you may provide your own icon() implementation to display
// an appropriate Pixmap (e.g. a Palm Pilot or a Zaurus image).
- QString iconFileName() const;
+ TQString iconFileName() const;
- QString deviceUniqueID();
+ TQString deviceUniqueID();
/*
* Addressbook / Phonebook support
@@ -61,11 +61,11 @@ public:
* Notes support
*/
int numNotes();
- int readNote( int index, QString &note );
+ int readNote( int index, TQString &note );
signals:
void connectionChanged( bool connected );
- void message( int msgLevel, const QString &msg );
+ void message( int msgLevel, const TQString &msg );
};
#endif