summaryrefslogtreecommitdiffstats
path: root/superkaramba/src/lineparser.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:52:55 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:52:55 +0000
commit5f5ee2367157176ed223b86343eb0a9e4022e020 (patch)
tree6a9c87f14ee38e90eff3c77c784f14e4f38fd5a1 /superkaramba/src/lineparser.h
parent4facf42feec57b22dcf46badc115ad6c5b5cc512 (diff)
downloadtdeutils-5f5ee2367157176ed223b86343eb0a9e4022e020.tar.gz
tdeutils-5f5ee2367157176ed223b86343eb0a9e4022e020.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeutils@1157653 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'superkaramba/src/lineparser.h')
-rw-r--r--superkaramba/src/lineparser.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/superkaramba/src/lineparser.h b/superkaramba/src/lineparser.h
index b877e6c..b92385d 100644
--- a/superkaramba/src/lineparser.h
+++ b/superkaramba/src/lineparser.h
@@ -27,27 +27,27 @@
@author See README for the list of authors
*/
-#include <qstring.h>
-#include <qcolor.h>
+#include <tqstring.h>
+#include <tqcolor.h>
class LineParser
{
public:
- LineParser(const QString& line = QString::null);
+ LineParser(const TQString& line = TQString::null);
~LineParser();
- void set(const QString& line);
+ void set(const TQString& line);
- int getInt(QString w, int def = 0) const;
- QColor getColor(QString w, QColor def = QColor()) const;
- QString getString(QString w, QString def = QString()) const;
- bool getBoolean(QString w, bool def = false) const;
+ int getInt(TQString w, int def = 0) const;
+ TQColor getColor(TQString w, TQColor def = TQColor()) const;
+ TQString getString(TQString w, TQString def = TQString()) const;
+ bool getBoolean(TQString w, bool def = false) const;
- const QString& meter() const { return m_meter; };
+ const TQString& meter() const { return m_meter; };
private:
- QString m_line;
- QString m_meter;
+ TQString m_line;
+ TQString m_meter;
};
#endif