diff options
Diffstat (limited to 'kdat/BackupOptDlg.h')
-rw-r--r-- | kdat/BackupOptDlg.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kdat/BackupOptDlg.h b/kdat/BackupOptDlg.h index f76a7da..10047dc 100644 --- a/kdat/BackupOptDlg.h +++ b/kdat/BackupOptDlg.h @@ -19,7 +19,7 @@ #ifndef _BackupOptDlg_h_ #define _BackupOptDlg_h_ -#include <qdialog.h> +#include <tqdialog.h> class BackupProfile; class BackupProfileWidget; @@ -27,7 +27,7 @@ class BackupProfileWidget; /** * @short Display/edit the parameters for a backup operation. */ -class BackupOptDlg : public QDialog { +class BackupOptDlg : public TQDialog { Q_OBJECT BackupProfileWidget* _profile; public: @@ -36,7 +36,7 @@ public: * * @param backupProfile The backup profile. */ - BackupOptDlg( BackupProfile* backupProfile, QWidget* parent=0, const char* name=0 ); + BackupOptDlg( BackupProfile* backupProfile, TQWidget* parent=0, const char* name=0 ); /** * Destroy the backup options dialog. @@ -48,21 +48,21 @@ public: * * @return The name of the new archive. */ - QString getArchiveName(); + TQString getArchiveName(); /** * Query the working directory for the tar command. * * @return The working directory. */ - QString getWorkingDirectory(); + TQString getWorkingDirectory(); /** * Query the list of files to backup, relative to the working directory. * * @return The file list. */ - const QStringList& getRelativeFiles(); + const TQStringList& getRelativeFiles(); /** * Query whether or not to cross filesystem boundaries when performing the @@ -85,7 +85,7 @@ public: * * @return The name of the snapshot file. */ - QString getSnapshotFile(); + TQString getSnapshotFile(); /** * Query whether to remove the snapshot file before beginning an |