diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:25:18 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:25:18 +0000 |
commit | aa3a1ca934bc541bddd3fa136a85f106f7da266e (patch) | |
tree | 9ad0b795aed8fa4ac30c2fe0fd1aacb8175714c0 /kdat/BackupOptDlg.h | |
parent | b10cf7066791a2f362495890cd50c984e8025412 (diff) | |
download | tdeadmin-aa3a1ca934bc541bddd3fa136a85f106f7da266e.tar.gz tdeadmin-aa3a1ca934bc541bddd3fa136a85f106f7da266e.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeadmin@1157635 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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 |