summaryrefslogtreecommitdiffstats
path: root/kalzium/src/parser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kalzium/src/parser.cpp')
-rw-r--r--kalzium/src/parser.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kalzium/src/parser.cpp b/kalzium/src/parser.cpp
index 19364c73..d678885f 100644
--- a/kalzium/src/parser.cpp
+++ b/kalzium/src/parser.cpp
@@ -21,11 +21,11 @@
Parser::Parser()
{
- start(QString::null);
+ start(TQString::null);
}
-Parser::Parser(const QString& _str)
+Parser::Parser(const TQString& _str)
{
start(_str);
}
@@ -37,7 +37,7 @@ Parser::~Parser()
void
-Parser::start(const QString& _str)
+Parser::start(const TQString& _str)
{
m_str = _str;
@@ -165,7 +165,7 @@ Parser::getNextChar()
int
Parser::skipWhitespace()
{
- while (QChar(m_nextChar).isSpace())
+ while (TQChar(m_nextChar).isSpace())
getNextChar();
return m_nextChar;