From 7be55ffa061c026e35e2d6a0effe1161ddb0d41f Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 31 Jul 2010 19:53:50 +0000 Subject: Trinity Qt initial conversion git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kpilot/lib/recordConduit.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'kpilot/lib/recordConduit.h') diff --git a/kpilot/lib/recordConduit.h b/kpilot/lib/recordConduit.h index d12ceef2..743e326d 100644 --- a/kpilot/lib/recordConduit.h +++ b/kpilot/lib/recordConduit.h @@ -27,7 +27,7 @@ ** Bug reports and questions can be sent to kde-pim@kde.org */ -#include +#include #include #include "plugin.h" @@ -57,11 +57,11 @@ class RecordConduitBase : public ConduitAction { Q_OBJECT public: - /** Constructor. The QStringList @p a sets flags for the ConduitAction. + /** Constructor. The TQStringList @p a sets flags for the ConduitAction. */ RecordConduitBase(KPilotDeviceLink *o, const char *n, - const QStringList a = QStringList()) : + const TQStringList a = TQStringList()) : ConduitAction(o,n,a), fTimer(0L) { @@ -80,12 +80,12 @@ public: enum SyncProgress { NotDone=0, Done=1, Error=2 } ; /** Returns a human-readable name for the progress indicator @p s */ - static QString name(SyncProgress s); + static TQString name(SyncProgress s); /** State of the conduit's sync. This is changed by process(). */ enum States { Initialize, PalmToPC, PCToPalm, Cleanup } ; - static QString name(States s); + static TQString name(States s); protected: /** Function called at the beginning of a sync to load data from the PC. @@ -129,14 +129,14 @@ protected: private: /** Timer to signal the process() slot. Used to keep the UI responsive. */ - QTimer *fTimer; + TQTimer *fTimer; States fState; Pilot::RecordIDList fIDList; Pilot::RecordIDList::Iterator fIDListIterator; - QString fDBName; + TQString fDBName; } ; template @@ -146,8 +146,8 @@ public: /** Construct a record conduit on a given device link. */ RecordConduit( KPilotDeviceLink *o /**< Connection to HH */, - const char *n /**< Name for QObject */, - const QStringList a = QStringList() /**< Flags */) : + const char *n /**< Name for TQObject */, + const TQStringList a = TQStringList() /**< Flags */) : RecordConduitBase(o,n,a) { } ; -- cgit v1.2.3