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/Options.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/Options.h')
-rw-r--r-- | kdat/Options.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kdat/Options.h b/kdat/Options.h index 4f65795..d9701ea 100644 --- a/kdat/Options.h +++ b/kdat/Options.h @@ -19,20 +19,20 @@ #ifndef _Options_h_ #define _Options_h_ -#include <qobject.h> +#include <tqobject.h> class KConfig; /** * @short The central repository for user preferences. */ -class Options : public QObject { +class Options : public TQObject { Q_OBJECT KConfig* _config; int _defaultTapeSize; int _tapeBlockSize; - QString _tapeDevice; - QString _tarCommand; + TQString _tapeDevice; + TQString _tarCommand; bool _loadOnMount; bool _lockOnMount; bool _ejectOnUnmount; @@ -74,14 +74,14 @@ public: * * @return The tape device path. */ - QString getTapeDevice(); + TQString getTapeDevice(); /** * Get the full path to the tar command. * * @return The path to the tar command. */ - QString getTarCommand(); + TQString getTarCommand(); /** * Get whether to load the tape before attempting to mount it. @@ -130,14 +130,14 @@ public: * * @param str The full path to the tape device. */ - void setTapeDevice( const QString & str ); + void setTapeDevice( const TQString & str ); /** * Set the path to the tar command. * * @param str The full path to the tar command. */ - void setTarCommand( const QString & str ); + void setTarCommand( const TQString & str ); /** * Set whether to load the tape before attempting to mount it. |