summaryrefslogtreecommitdiffstats
path: root/kpilot/kpilot/hotSync.h
diff options
context:
space:
mode:
Diffstat (limited to 'kpilot/kpilot/hotSync.h')
-rw-r--r--kpilot/kpilot/hotSync.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/kpilot/kpilot/hotSync.h b/kpilot/kpilot/hotSync.h
index 580c2d61..33ef5531 100644
--- a/kpilot/kpilot/hotSync.h
+++ b/kpilot/kpilot/hotSync.h
@@ -41,7 +41,7 @@ class QTimer;
class CheckUser : public SyncAction
{
public:
- CheckUser(KPilotLink *p,QWidget *w=0L);
+ CheckUser(KPilotLink *p,TQWidget *w=0L);
virtual ~CheckUser();
protected:
@@ -72,7 +72,7 @@ public:
BackupEnded,
BackupComplete
} ;
- virtual QString statusString() const;
+ virtual TQString statusString() const;
/** By default, a path based on the user name (either
* on the handheld or set in KPilot) is used to
@@ -83,10 +83,10 @@ public:
* @p path to restore the default behavior of using
* the username.
*/
- void setDirectory( const QString &path );
+ void setDirectory( const TQString &path );
// Reimplemented to support threaded backup.
- virtual bool event( QEvent *e );
+ virtual bool event( TQEvent *e );
protected:
virtual bool exec();
@@ -119,10 +119,10 @@ class FileInstallAction : public SyncAction
Q_OBJECT
public:
FileInstallAction(KPilotLink *,
- const QString &fileDir);
+ const TQString &fileDir);
virtual ~FileInstallAction();
- virtual QString statusString() const;
+ virtual TQString statusString() const;
protected:
virtual bool exec();
@@ -132,23 +132,23 @@ protected slots:
private:
int fDBIndex;
- QTimer *fTimer;
- QString fDir;
- QStringList fList;
+ TQTimer *fTimer;
+ TQString fDir;
+ TQStringList fList;
// TODO: not const because it calls logError(), which is
// non-const (but might be - can signals be const, anyway?)
- bool resourceOK(const QString &, const QString &) /* const */ ;
+ bool resourceOK(const TQString &, const TQString &) /* const */ ;
} ;
class RestoreAction : public SyncAction
{
Q_OBJECT
public:
- RestoreAction(KPilotLink *,QWidget *w=0L);
+ RestoreAction(KPilotLink *,TQWidget *w=0L);
typedef enum { InstallingFiles, GettingFileInfo,Done } Status;
- virtual QString statusString() const;
+ virtual TQString statusString() const;
/** By default, a path based on the user name (either
* on the handheld or set in KPilot) is used to
@@ -159,7 +159,7 @@ public:
* @p path to restore the default behavior of using
* the username.
*/
- void setDirectory( const QString &path );
+ void setDirectory( const TQString &path );
protected:
virtual bool exec();