summaryrefslogtreecommitdiffstats
path: root/src/options.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/options.h')
-rw-r--r--src/options.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/options.h b/src/options.h
index 3ab53c0..0caa9ef 100644
--- a/src/options.h
+++ b/src/options.h
@@ -13,7 +13,7 @@
#include <map>
using namespace std;
-#include <qstring.h>
+#include <tqstring.h>
//! Class that contains all the options for a document.
@@ -38,7 +38,7 @@ public:
*
* \sa operator[]()
*/
- void setValue(QString key, QString value);
+ void setValue(TQString key, TQString value);
//! Checks if the object contains no keys
/*!
* \returns \b true if the object is empty, \b false otherwise
@@ -53,14 +53,14 @@ public:
* \returns The value associated with the key
* \sa setValue()
*/
- QString operator[](QString key);
+ TQString operator[](TQString key);
//! Sets all the options to their default value.
void defaultOptions();
//! Prints the list of options
void debug();
private:
- map<QString,QString> options; /*!< The map containing the options */
+ map<TQString,TQString> options; /*!< The map containing the options */
};
#endif