summaryrefslogtreecommitdiffstats
path: root/lib/kformula/sequenceparser.cc
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-25 05:28:35 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-25 05:28:35 +0000
commitf008adb5a77e094eaf6abf3fc0f36958e66896a5 (patch)
tree8e9244c4d4957c36be81e15b566b4aa5ea26c982 /lib/kformula/sequenceparser.cc
parent1210f27b660efb7b37ff43ec68763e85a403471f (diff)
downloadkoffice-f008adb5a77e094eaf6abf3fc0f36958e66896a5.tar.gz
koffice-f008adb5a77e094eaf6abf3fc0f36958e66896a5.zip
TQt4 port koffice
This should enable compilation under both Qt3 and Qt4; fixes for any missed components will be forthcoming git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1238284 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'lib/kformula/sequenceparser.cc')
-rw-r--r--lib/kformula/sequenceparser.cc18
1 files changed, 9 insertions, 9 deletions
diff --git a/lib/kformula/sequenceparser.cc b/lib/kformula/sequenceparser.cc
index 55c8dec7..9a4ee8a2 100644
--- a/lib/kformula/sequenceparser.cc
+++ b/lib/kformula/sequenceparser.cc
@@ -41,7 +41,7 @@ void SequenceParser::setElementType( uint pos, ElementType* type )
}
-ElementType* SequenceParser::parse( QPtrList<BasicElement>& elements )
+ElementType* SequenceParser::parse( TQPtrList<BasicElement>& elements )
{
list = elements;
return new SequenceType( this );
@@ -60,7 +60,7 @@ void SequenceParser::nextToken()
type = element->getTokenType();
if ( type == SEPARATOR ) {
if ( tokenEnd < list.count() ) {
- QChar ch = getEndChar();
+ TQChar ch = getEndChar();
switch ( ch ) {
case ',':
case '>':
@@ -95,7 +95,7 @@ void SequenceParser::readNumber()
type = NUMBER;
readDigits();
if ( tokenEnd < list.count()-1 ) {
- QChar ch = getEndChar();
+ TQChar ch = getEndChar();
// Look for a dot.
if ( ch == '.' ) {
@@ -147,7 +147,7 @@ void SequenceParser::readNumber()
void SequenceParser::readDigits()
{
for ( ; tokenEnd < list.count(); tokenEnd++ ) {
- QChar ch = getEndChar();
+ TQChar ch = getEndChar();
if ( !ch.isNumber() ) {
break;
}
@@ -182,7 +182,7 @@ void SequenceParser::readText()
}
}
-QChar SequenceParser::getEndChar()
+TQChar SequenceParser::getEndChar()
{
BasicElement* element = list.at( tokenEnd );
return element->getCharacter();
@@ -195,8 +195,8 @@ ElementType* SequenceParser::getPrimitive()
// << tokenStart << " " << tokenEnd << endl;
switch ( type ) {
case ORDINARY: {
-// QString text = getText();
-// if ( table.contains( text ) || ( text == "\\quad" ) ) {
+// TQString text = getText();
+// if ( table.tqcontains( text ) || ( text == "\\quad" ) ) {
// return new NameType( this, text );
// }
// else {
@@ -228,9 +228,9 @@ ElementType* SequenceParser::getPrimitive()
}
-QString SequenceParser::text()
+TQString SequenceParser::text()
{
- QString text;
+ TQString text;
for ( uint i = tokenStart; i < tokenEnd; i++ ) {
BasicElement* element = list.at( i );
text.append( element->getCharacter() );