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/BackupProfileManager.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/BackupProfileManager.h')
-rw-r--r-- | kdat/BackupProfileManager.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kdat/BackupProfileManager.h b/kdat/BackupProfileManager.h index fa6939e..418d807 100644 --- a/kdat/BackupProfileManager.h +++ b/kdat/BackupProfileManager.h @@ -19,8 +19,8 @@ #ifndef _BackupProfileManager_h_ #define _BackupProfileManager_h_ -#include <qdict.h> -#include <qobject.h> +#include <tqdict.h> +#include <tqobject.h> #include "BackupProfile.h" @@ -37,13 +37,13 @@ * * The BackupProfileManager follows the Singleton pattern. */ -class BackupProfileManager : public QObject { +class BackupProfileManager : public TQObject { Q_OBJECT static BackupProfileManager* _instance; - QDict<BackupProfile> _backupProfiles; - QStringList _backupProfileNames; + TQDict<BackupProfile> _backupProfiles; + TQStringList _backupProfileNames; BackupProfileManager(); public: @@ -59,9 +59,9 @@ public: /** * Get the list of all known backup profiles. * - * @return a QStringList containing the backup profile names. + * @return a TQStringList containing the backup profile names. */ - const QStringList& getBackupProfileNames(); + const TQStringList& getBackupProfileNames(); /** * Retrieve the named backup profile. @@ -69,7 +69,7 @@ public: * @param name The name of the backup profile. * @return A pointer to the backup profile. */ - BackupProfile* findBackupProfile( const QString & name ); + BackupProfile* findBackupProfile( const TQString & name ); /** * Add a new backup profile. |