summaryrefslogtreecommitdiffstats
path: root/kpilot/kpilot/fileInstaller.h
diff options
context:
space:
mode:
Diffstat (limited to 'kpilot/kpilot/fileInstaller.h')
-rw-r--r--kpilot/kpilot/fileInstaller.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/kpilot/kpilot/fileInstaller.h b/kpilot/kpilot/fileInstaller.h
index 3c23f571..367a6a2b 100644
--- a/kpilot/kpilot/fileInstaller.h
+++ b/kpilot/kpilot/fileInstaller.h
@@ -33,7 +33,7 @@
#ifndef _KPILOT_FILEINSTALLER_H
#define _KPILOT_FILEINSTALLER_H
-#include <qobject.h>
+#include <tqobject.h>
class QStringList;
@@ -48,24 +48,24 @@ public:
void clearPending();
- void addFiles( const QStringList&, QWidget* w );
- void addFile( const QString&, QWidget* w );
+ void addFiles( const TQStringList&, TQWidget* w );
+ void addFile( const TQString&, TQWidget* w );
- void deleteFile(const QString &);
- void deleteFiles(const QStringList &);
+ void deleteFile(const TQString &);
+ void deleteFiles(const TQStringList &);
/**
* Returns information about this installer. Note particularly
* that fileNames() returns only filenames, not paths. In particular,
* you'll need to prepend dir()+"/" to get pathnames.
*/
- const QString &dir() const { return fDirName; } ;
- const QStringList fileNames() const ;
+ const TQString &dir() const { return fDirName; } ;
+ const TQStringList fileNames() const ;
protected:
- virtual bool runCopy( const QString &src, QWidget*w );
+ virtual bool runCopy( const TQString &src, TQWidget*w );
public slots:
void copyCompleted();
@@ -74,7 +74,7 @@ public slots:
signals:
void filesChanged();
private:
- QString fDirName;
+ TQString fDirName;
int fPendingCopies;
bool enabled;
} ;