summaryrefslogtreecommitdiffstats
path: root/kdat/Options.h
diff options
context:
space:
mode:
Diffstat (limited to 'kdat/Options.h')
-rw-r--r--kdat/Options.h16
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.