summaryrefslogtreecommitdiffstats
path: root/kmobile/devices/skeleton/skeleton.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
commit7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch)
tree8474f9b444b2756228600050f07a7ff25de532b2 /kmobile/devices/skeleton/skeleton.h
parentf587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff)
downloadtdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.tar.gz
tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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 eb0d7db0b..de57947a3 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