diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-28 22:31:39 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-28 22:31:39 -0600 |
commit | 41bb408dde90e755b07cd2ab8a9bdec7548c84b0 (patch) | |
tree | 6d4d5407c000add30aa78630e009c0e5d633e440 /src/xml | |
parent | 1740cd279522c060e738bbbffacab83355d2b794 (diff) | |
download | tqt3-41bb408dde90e755b07cd2ab8a9bdec7548c84b0.tar.gz tqt3-41bb408dde90e755b07cd2ab8a9bdec7548c84b0.zip |
Automated conversion from qt3
Diffstat (limited to 'src/xml')
-rw-r--r-- | src/xml/qdom.cpp | 4 | ||||
-rw-r--r-- | src/xml/qsvgdevice.cpp | 28 | ||||
-rw-r--r-- | src/xml/qxml.cpp | 96 |
3 files changed, 64 insertions, 64 deletions
diff --git a/src/xml/qdom.cpp b/src/xml/qdom.cpp index 954321c48..44f073460 100644 --- a/src/xml/qdom.cpp +++ b/src/xml/qdom.cpp @@ -3686,7 +3686,7 @@ static TQString encodeAttr( const TQString& str ) i += 4; } else if (!isXmlChar(tmp[(int)i])) { TQString repl = "&#x" + TQString::number(tmp[(int)i].unicode(), 16) + ';'; - qWarning("TQDom: saving invalid character %s, the document will not be well-formed", repl.latin1()); + tqWarning("TQDom: saving invalid character %s, the document will not be well-formed", repl.latin1()); tmp.replace(i, 1, repl); len += repl.length() - 1; i += repl.length(); @@ -4651,7 +4651,7 @@ TQDomNodePrivate* TQDomTextPrivate::cloneNode( bool deep) TQDomTextPrivate* TQDomTextPrivate::splitText( int offset ) { if ( !parent() ) { - qWarning( "TQDomText::splitText The node has no parent. So I can not split" ); + tqWarning( "TQDomText::splitText The node has no parent. So I can not split" ); return 0; } diff --git a/src/xml/qsvgdevice.cpp b/src/xml/qsvgdevice.cpp index da64aa911..106905594 100644 --- a/src/xml/qsvgdevice.cpp +++ b/src/xml/qsvgdevice.cpp @@ -187,13 +187,13 @@ bool TQSvgDevice::play( TQPainter *painter ) pt->setPen( TQt::NoPen ); // SVG default pen and brush pt->setBrush( TQt::black ); if ( doc.isNull() ) { - qWarning( "TQSvgDevice::play: No SVG data set." ); + tqWarning( "TQSvgDevice::play: No SVG data set." ); return FALSE; } TQDomNode svg = doc.namedItem( "svg" ); if ( svg.isNull() || !svg.isElement() ) { - qWarning( "TQSvgDevice::play: Couldn't find any svg element." ); + tqWarning( "TQSvgDevice::play: Couldn't find any svg element." ); return FALSE; } @@ -221,7 +221,7 @@ bool TQSvgDevice::play( TQPainter *painter ) TQRegExp re( TQString::fromLatin1("\\s*(\\S+)\\s*,?\\s*(\\S+)\\s*,?" "\\s*(\\S+)\\s*,?\\s*(\\S+)\\s*") ); if ( re.search( attr.namedItem( "viewBox" ).nodeValue() ) < 0 ) { - qWarning( "TQSvgDevice::play: Invalid viewBox attribute."); + tqWarning( "TQSvgDevice::play: Invalid viewBox attribute."); return FALSE; } else { double x = re.cap( 1 ).toDouble(); @@ -229,7 +229,7 @@ bool TQSvgDevice::play( TQPainter *painter ) double w = re.cap( 3 ).toDouble(); double h = re.cap( 4 ).toDouble(); if ( w < 0 || h < 0 ) { - qWarning( "TQSvgDevice::play: Invalid viewBox dimension."); + tqWarning( "TQSvgDevice::play: Invalid viewBox dimension."); return FALSE; } else if ( w == 0 || h == 0 ) { return TRUE; @@ -353,7 +353,7 @@ bool TQSvgDevice::save( TQIODevice *dev ) { #if defined(CHECK_RANGE) if ( !d->images.isEmpty() || !d->pixmaps.isEmpty() ) - qWarning( "TQSvgDevice::save: skipping external images" ); + tqWarning( "TQSvgDevice::save: skipping external images" ); #endif TQTextStream s( dev ); @@ -419,7 +419,7 @@ int TQSvgDevice::metric( int m ) const default: val = 0; #if defined(QT_CHECK_RANGE) - qWarning( "TQSvgDevice::metric: Invalid metric command" ); + tqWarning( "TQSvgDevice::metric: Invalid metric command" ); #endif } return val; @@ -714,7 +714,7 @@ bool TQSvgDevice::cmd ( int c, TQPainter *painter, TQPDevCmdParam *p ) } default: #if defined(CHECK_RANGE) - qWarning( "TQSVGDevice::cmd: Invalid command %d", c ); + tqWarning( "TQSVGDevice::cmd: Invalid command %d", c ); #endif break; } @@ -981,7 +981,7 @@ bool TQSvgDevice::play( const TQDomNode &node ) // ### catch references to embedded .svg files TQPixmap pix; if ( !pix.load( href ) ) { - qWarning( "TQSvgDevice::play: Couldn't load image %s", href.latin1() ); + tqWarning( "TQSvgDevice::play: Couldn't load image %s", href.latin1() ); break; } pt->drawPixmap( TQRect( x1, y1, w, h ), pix ); @@ -1027,7 +1027,7 @@ bool TQSvgDevice::play( const TQDomNode &node ) break; } case InvalidElement: - qWarning( "TQSvgDevice::play: unknown element type %s", + tqWarning( "TQSvgDevice::play: unknown element type %s", node.nodeName().latin1() ); break; }; @@ -1114,7 +1114,7 @@ double TQSvgDevice::parseLen( const TQString &str, bool *ok, bool horiz ) const { TQRegExp reg( TQString::fromLatin1("([+-]?\\d*\\.*\\d*[Ee]?[+-]?\\d*)(em|ex|px|%|pt|pc|cm|mm|in|)$") ); if ( reg.search( str ) == -1 ) { - qWarning( "TQSvgDevice::parseLen: couldn't parse %s ", str.latin1() ); + tqWarning( "TQSvgDevice::parseLen: couldn't parse %s ", str.latin1() ); if ( ok ) *ok = FALSE; return 0.0; @@ -1143,7 +1143,7 @@ double TQSvgDevice::parseLen( const TQString &str, bool *ok, bool horiz ) const else if ( u == "pc" ) dbl *= m.logicalDpiX() / 6.0; else - qWarning( "TQSvgDevice::parseLen: Unknown unit %s", u.latin1() ); + tqWarning( "TQSvgDevice::parseLen: Unknown unit %s", u.latin1() ); } if ( ok ) *ok = TRUE; @@ -1241,7 +1241,7 @@ void TQSvgDevice::setStyleProperty( const TQString &prop, const TQString &val, else if ( val == "italic" ) font->setItalic( TRUE ); else - qWarning( "TQSvgDevice::setStyleProperty: unhandled " + tqWarning( "TQSvgDevice::setStyleProperty: unhandled " "font-style: %s", val.latin1() ); } else if ( prop == "font-weight" ) { int w = font->weight(); @@ -1373,7 +1373,7 @@ void TQSvgDevice::drawPath( const TQString &data ) cmd = mode; // continue in previous mode idx--; } else { - qWarning( "TQSvgDevice::drawPath: Unknown command" ); + tqWarning( "TQSvgDevice::drawPath: Unknown command" ); return; } } @@ -1385,7 +1385,7 @@ void TQSvgDevice::drawPath( const TQString &data ) for ( int i = 0; i < numArgs; i++ ) { int pos = reg.search( data, idx ); if ( pos == -1 ) { - qWarning( "TQSvgDevice::drawPath: Error parsing arguments" ); + tqWarning( "TQSvgDevice::drawPath: Error parsing arguments" ); return; } arg[ i ] = reg.cap( 1 ).toDouble(); diff --git a/src/xml/qxml.cpp b/src/xml/qxml.cpp index ccc3498d7..f57920e62 100644 --- a/src/xml/qxml.cpp +++ b/src/xml/qxml.cpp @@ -2725,7 +2725,7 @@ bool TQXmlSimpleReader::feature( const TQString& name, bool *ok ) const } else if ( name == "http://trolltech.com/xml/features/report-start-end-entity" ) { return d->reportEntities; } else { - qWarning( "Unknown feature %s", name.latin1() ); + tqWarning( "Unknown feature %s", name.latin1() ); if ( ok != 0 ) *ok = FALSE; } @@ -2783,7 +2783,7 @@ void TQXmlSimpleReader::setFeature( const TQString& name, bool value ) } else if ( name == "http://trolltech.com/xml/features/report-start-end-entity" ) { d->reportEntities = value; } else { - qWarning( "Unknown feature %s", name.latin1() ); + tqWarning( "Unknown feature %s", name.latin1() ); } } @@ -3182,14 +3182,14 @@ bool TQXmlSimpleReader::parseProlog() } else { state = d->parseStack->pop().state; #if defined(QT_QXML_DEBUG) - qDebug( "TQXmlSimpleReader: parseProlog (cont) in state %d", state ); + tqDebug( "TQXmlSimpleReader: parseProlog (cont) in state %d", state ); #endif if ( !d->parseStack->isEmpty() ) { ParseFunction function = d->parseStack->top().function; if ( function == &TQXmlSimpleReader::eat_ws ) { d->parseStack->pop(); #if defined(QT_QXML_DEBUG) - qDebug( "TQXmlSimpleReader: eat_ws (cont)" ); + tqDebug( "TQXmlSimpleReader: eat_ws (cont)" ); #endif } if ( !(this->*function)() ) { @@ -3370,14 +3370,14 @@ bool TQXmlSimpleReader::parseElement() } else { state = d->parseStack->pop().state; #if defined(QT_QXML_DEBUG) - qDebug( "TQXmlSimpleReader: parseElement (cont) in state %d", state ); + tqDebug( "TQXmlSimpleReader: parseElement (cont) in state %d", state ); #endif if ( !d->parseStack->isEmpty() ) { ParseFunction function = d->parseStack->top().function; if ( function == &TQXmlSimpleReader::eat_ws ) { d->parseStack->pop(); #if defined(QT_QXML_DEBUG) - qDebug( "TQXmlSimpleReader: eat_ws (cont)" ); + tqDebug( "TQXmlSimpleReader: eat_ws (cont)" ); #endif } if ( !(this->*function)() ) { @@ -3734,14 +3734,14 @@ bool TQXmlSimpleReader::parseContent() } else { state = d->parseStack->pop().state; #if defined(QT_QXML_DEBUG) - qDebug( "TQXmlSimpleReader: parseContent (cont) in state %d", state ); + tqDebug( "TQXmlSimpleReader: parseContent (cont) in state %d", state ); #endif if ( !d->parseStack->isEmpty() ) { ParseFunction function = d->parseStack->top().function; if ( function == &TQXmlSimpleReader::eat_ws ) { d->parseStack->pop(); #if defined(QT_QXML_DEBUG) - qDebug( "TQXmlSimpleReader: eat_ws (cont)" ); + tqDebug( "TQXmlSimpleReader: eat_ws (cont)" ); #endif } if ( !(this->*function)() ) { @@ -4035,14 +4035,14 @@ bool TQXmlSimpleReader::parseMisc() } else { state = d->parseStack->pop().state; #if defined(QT_QXML_DEBUG) - qDebug( "TQXmlSimpleReader: parseMisc (cont) in state %d", state ); + tqDebug( "TQXmlSimpleReader: parseMisc (cont) in state %d", state ); #endif if ( !d->parseStack->isEmpty() ) { ParseFunction function = d->parseStack->top().function; if ( function == &TQXmlSimpleReader::eat_ws ) { d->parseStack->pop(); #if defined(QT_QXML_DEBUG) - qDebug( "TQXmlSimpleReader: eat_ws (cont)" ); + tqDebug( "TQXmlSimpleReader: eat_ws (cont)" ); #endif } if ( !(this->*function)() ) { @@ -4189,14 +4189,14 @@ bool TQXmlSimpleReader::parsePI() } else { state = d->parseStack->pop().state; #if defined(QT_QXML_DEBUG) - qDebug( "TQXmlSimpleReader: parsePI (cont) in state %d", state ); + tqDebug( "TQXmlSimpleReader: parsePI (cont) in state %d", state ); #endif if ( !d->parseStack->isEmpty() ) { ParseFunction function = d->parseStack->top().function; if ( function == &TQXmlSimpleReader::eat_ws ) { d->parseStack->pop(); #if defined(QT_QXML_DEBUG) - qDebug( "TQXmlSimpleReader: eat_ws (cont)" ); + tqDebug( "TQXmlSimpleReader: eat_ws (cont)" ); #endif } if ( !(this->*function)() ) { @@ -4418,14 +4418,14 @@ bool TQXmlSimpleReader::parseDoctype() } else { state = d->parseStack->pop().state; #if defined(QT_QXML_DEBUG) - qDebug( "TQXmlSimpleReader: parseDoctype (cont) in state %d", state ); + tqDebug( "TQXmlSimpleReader: parseDoctype (cont) in state %d", state ); #endif if ( !d->parseStack->isEmpty() ) { ParseFunction function = d->parseStack->top().function; if ( function == &TQXmlSimpleReader::eat_ws ) { d->parseStack->pop(); #if defined(QT_QXML_DEBUG) - qDebug( "TQXmlSimpleReader: eat_ws (cont)" ); + tqDebug( "TQXmlSimpleReader: eat_ws (cont)" ); #endif } if ( !(this->*function)() ) { @@ -4620,14 +4620,14 @@ bool TQXmlSimpleReader::parseExternalID() } else { state = d->parseStack->pop().state; #if defined(QT_QXML_DEBUG) - qDebug( "TQXmlSimpleReader: parseExternalID (cont) in state %d", state ); + tqDebug( "TQXmlSimpleReader: parseExternalID (cont) in state %d", state ); #endif if ( !d->parseStack->isEmpty() ) { ParseFunction function = d->parseStack->top().function; if ( function == &TQXmlSimpleReader::eat_ws ) { d->parseStack->pop(); #if defined(QT_QXML_DEBUG) - qDebug( "TQXmlSimpleReader: eat_ws (cont)" ); + tqDebug( "TQXmlSimpleReader: eat_ws (cont)" ); #endif } if ( !(this->*function)() ) { @@ -4781,14 +4781,14 @@ bool TQXmlSimpleReader::parseMarkupdecl() } else { state = d->parseStack->pop().state; #if defined(QT_QXML_DEBUG) - qDebug( "TQXmlSimpleReader: parseMarkupdecl (cont) in state %d", state ); + tqDebug( "TQXmlSimpleReader: parseMarkupdecl (cont) in state %d", state ); #endif if ( !d->parseStack->isEmpty() ) { ParseFunction function = d->parseStack->top().function; if ( function == &TQXmlSimpleReader::eat_ws ) { d->parseStack->pop(); #if defined(QT_QXML_DEBUG) - qDebug( "TQXmlSimpleReader: eat_ws (cont)" ); + tqDebug( "TQXmlSimpleReader: eat_ws (cont)" ); #endif } if ( !(this->*function)() ) { @@ -4938,14 +4938,14 @@ bool TQXmlSimpleReader::parsePEReference() } else { state = d->parseStack->pop().state; #if defined(QT_QXML_DEBUG) - qDebug( "TQXmlSimpleReader: parsePEReference (cont) in state %d", state ); + tqDebug( "TQXmlSimpleReader: parsePEReference (cont) in state %d", state ); #endif if ( !d->parseStack->isEmpty() ) { ParseFunction function = d->parseStack->top().function; if ( function == &TQXmlSimpleReader::eat_ws ) { d->parseStack->pop(); #if defined(QT_QXML_DEBUG) - qDebug( "TQXmlSimpleReader: eat_ws (cont)" ); + tqDebug( "TQXmlSimpleReader: eat_ws (cont)" ); #endif } if ( !(this->*function)() ) { @@ -5110,14 +5110,14 @@ bool TQXmlSimpleReader::parseAttlistDecl() } else { state = d->parseStack->pop().state; #if defined(QT_QXML_DEBUG) - qDebug( "TQXmlSimpleReader: parseAttlistDecl (cont) in state %d", state ); + tqDebug( "TQXmlSimpleReader: parseAttlistDecl (cont) in state %d", state ); #endif if ( !d->parseStack->isEmpty() ) { ParseFunction function = d->parseStack->top().function; if ( function == &TQXmlSimpleReader::eat_ws ) { d->parseStack->pop(); #if defined(QT_QXML_DEBUG) - qDebug( "TQXmlSimpleReader: eat_ws (cont)" ); + tqDebug( "TQXmlSimpleReader: eat_ws (cont)" ); #endif } if ( !(this->*function)() ) { @@ -5325,14 +5325,14 @@ bool TQXmlSimpleReader::parseAttType() } else { state = d->parseStack->pop().state; #if defined(QT_QXML_DEBUG) - qDebug( "TQXmlSimpleReader: parseAttType (cont) in state %d", state ); + tqDebug( "TQXmlSimpleReader: parseAttType (cont) in state %d", state ); #endif if ( !d->parseStack->isEmpty() ) { ParseFunction function = d->parseStack->top().function; if ( function == &TQXmlSimpleReader::eat_ws ) { d->parseStack->pop(); #if defined(QT_QXML_DEBUG) - qDebug( "TQXmlSimpleReader: eat_ws (cont)" ); + tqDebug( "TQXmlSimpleReader: eat_ws (cont)" ); #endif } if ( !(this->*function)() ) { @@ -5545,14 +5545,14 @@ bool TQXmlSimpleReader::parseAttValue() } else { state = d->parseStack->pop().state; #if defined(QT_QXML_DEBUG) - qDebug( "TQXmlSimpleReader: parseAttValue (cont) in state %d", state ); + tqDebug( "TQXmlSimpleReader: parseAttValue (cont) in state %d", state ); #endif if ( !d->parseStack->isEmpty() ) { ParseFunction function = d->parseStack->top().function; if ( function == &TQXmlSimpleReader::eat_ws ) { d->parseStack->pop(); #if defined(QT_QXML_DEBUG) - qDebug( "TQXmlSimpleReader: eat_ws (cont)" ); + tqDebug( "TQXmlSimpleReader: eat_ws (cont)" ); #endif } if ( !(this->*function)() ) { @@ -5686,14 +5686,14 @@ bool TQXmlSimpleReader::parseElementDecl() } else { state = d->parseStack->pop().state; #if defined(QT_QXML_DEBUG) - qDebug( "TQXmlSimpleReader: parseElementDecl (cont) in state %d", state ); + tqDebug( "TQXmlSimpleReader: parseElementDecl (cont) in state %d", state ); #endif if ( !d->parseStack->isEmpty() ) { ParseFunction function = d->parseStack->top().function; if ( function == &TQXmlSimpleReader::eat_ws ) { d->parseStack->pop(); #if defined(QT_QXML_DEBUG) - qDebug( "TQXmlSimpleReader: eat_ws (cont)" ); + tqDebug( "TQXmlSimpleReader: eat_ws (cont)" ); #endif } if ( !(this->*function)() ) { @@ -5894,14 +5894,14 @@ bool TQXmlSimpleReader::parseNotationDecl() } else { state = d->parseStack->pop().state; #if defined(QT_QXML_DEBUG) - qDebug( "TQXmlSimpleReader: parseNotationDecl (cont) in state %d", state ); + tqDebug( "TQXmlSimpleReader: parseNotationDecl (cont) in state %d", state ); #endif if ( !d->parseStack->isEmpty() ) { ParseFunction function = d->parseStack->top().function; if ( function == &TQXmlSimpleReader::eat_ws ) { d->parseStack->pop(); #if defined(QT_QXML_DEBUG) - qDebug( "TQXmlSimpleReader: eat_ws (cont)" ); + tqDebug( "TQXmlSimpleReader: eat_ws (cont)" ); #endif } if ( !(this->*function)() ) { @@ -6037,14 +6037,14 @@ bool TQXmlSimpleReader::parseChoiceSeq() } else { state = d->parseStack->pop().state; #if defined(QT_QXML_DEBUG) - qDebug( "TQXmlSimpleReader: parseChoiceSeq (cont) in state %d", state ); + tqDebug( "TQXmlSimpleReader: parseChoiceSeq (cont) in state %d", state ); #endif if ( !d->parseStack->isEmpty() ) { ParseFunction function = d->parseStack->top().function; if ( function == &TQXmlSimpleReader::eat_ws ) { d->parseStack->pop(); #if defined(QT_QXML_DEBUG) - qDebug( "TQXmlSimpleReader: eat_ws (cont)" ); + tqDebug( "TQXmlSimpleReader: eat_ws (cont)" ); #endif } if ( !(this->*function)() ) { @@ -6201,14 +6201,14 @@ bool TQXmlSimpleReader::parseEntityDecl() } else { state = d->parseStack->pop().state; #if defined(QT_QXML_DEBUG) - qDebug( "TQXmlSimpleReader: parseEntityDecl (cont) in state %d", state ); + tqDebug( "TQXmlSimpleReader: parseEntityDecl (cont) in state %d", state ); #endif if ( !d->parseStack->isEmpty() ) { ParseFunction function = d->parseStack->top().function; if ( function == &TQXmlSimpleReader::eat_ws ) { d->parseStack->pop(); #if defined(QT_QXML_DEBUG) - qDebug( "TQXmlSimpleReader: eat_ws (cont)" ); + tqDebug( "TQXmlSimpleReader: eat_ws (cont)" ); #endif } if ( !(this->*function)() ) { @@ -6469,14 +6469,14 @@ bool TQXmlSimpleReader::parseEntityValue() } else { state = d->parseStack->pop().state; #if defined(QT_QXML_DEBUG) - qDebug( "TQXmlSimpleReader: parseEntityValue (cont) in state %d", state ); + tqDebug( "TQXmlSimpleReader: parseEntityValue (cont) in state %d", state ); #endif if ( !d->parseStack->isEmpty() ) { ParseFunction function = d->parseStack->top().function; if ( function == &TQXmlSimpleReader::eat_ws ) { d->parseStack->pop(); #if defined(QT_QXML_DEBUG) - qDebug( "TQXmlSimpleReader: eat_ws (cont)" ); + tqDebug( "TQXmlSimpleReader: eat_ws (cont)" ); #endif } if ( !(this->*function)() ) { @@ -6587,14 +6587,14 @@ bool TQXmlSimpleReader::parseComment() } else { state = d->parseStack->pop().state; #if defined(QT_QXML_DEBUG) - qDebug( "TQXmlSimpleReader: parseComment (cont) in state %d", state ); + tqDebug( "TQXmlSimpleReader: parseComment (cont) in state %d", state ); #endif if ( !d->parseStack->isEmpty() ) { ParseFunction function = d->parseStack->top().function; if ( function == &TQXmlSimpleReader::eat_ws ) { d->parseStack->pop(); #if defined(QT_QXML_DEBUG) - qDebug( "TQXmlSimpleReader: eat_ws (cont)" ); + tqDebug( "TQXmlSimpleReader: eat_ws (cont)" ); #endif } if ( !(this->*function)() ) { @@ -6698,14 +6698,14 @@ bool TQXmlSimpleReader::parseAttribute() } else { state = d->parseStack->pop().state; #if defined(QT_QXML_DEBUG) - qDebug( "TQXmlSimpleReader: parseAttribute (cont) in state %d", state ); + tqDebug( "TQXmlSimpleReader: parseAttribute (cont) in state %d", state ); #endif if ( !d->parseStack->isEmpty() ) { ParseFunction function = d->parseStack->top().function; if ( function == &TQXmlSimpleReader::eat_ws ) { d->parseStack->pop(); #if defined(QT_QXML_DEBUG) - qDebug( "TQXmlSimpleReader: eat_ws (cont)" ); + tqDebug( "TQXmlSimpleReader: eat_ws (cont)" ); #endif } if ( !(this->*function)() ) { @@ -6804,14 +6804,14 @@ bool TQXmlSimpleReader::parseName() } else { state = d->parseStack->pop().state; #if defined(QT_QXML_DEBUG) - qDebug( "TQXmlSimpleReader: parseName (cont) in state %d", state ); + tqDebug( "TQXmlSimpleReader: parseName (cont) in state %d", state ); #endif if ( !d->parseStack->isEmpty() ) { ParseFunction function = d->parseStack->top().function; if ( function == &TQXmlSimpleReader::eat_ws ) { d->parseStack->pop(); #if defined(QT_QXML_DEBUG) - qDebug( "TQXmlSimpleReader: eat_ws (cont)" ); + tqDebug( "TQXmlSimpleReader: eat_ws (cont)" ); #endif } if ( !(this->*function)() ) { @@ -6889,14 +6889,14 @@ bool TQXmlSimpleReader::parseNmtoken() } else { state = d->parseStack->pop().state; #if defined(QT_QXML_DEBUG) - qDebug( "TQXmlSimpleReader: parseNmtoken (cont) in state %d", state ); + tqDebug( "TQXmlSimpleReader: parseNmtoken (cont) in state %d", state ); #endif if ( !d->parseStack->isEmpty() ) { ParseFunction function = d->parseStack->top().function; if ( function == &TQXmlSimpleReader::eat_ws ) { d->parseStack->pop(); #if defined(QT_QXML_DEBUG) - qDebug( "TQXmlSimpleReader: eat_ws (cont)" ); + tqDebug( "TQXmlSimpleReader: eat_ws (cont)" ); #endif } if ( !(this->*function)() ) { @@ -6997,14 +6997,14 @@ bool TQXmlSimpleReader::parseReference() } else { state = d->parseStack->pop().state; #if defined(QT_QXML_DEBUG) - qDebug( "TQXmlSimpleReader: parseReference (cont) in state %d", state ); + tqDebug( "TQXmlSimpleReader: parseReference (cont) in state %d", state ); #endif if ( !d->parseStack->isEmpty() ) { ParseFunction function = d->parseStack->top().function; if ( function == &TQXmlSimpleReader::eat_ws ) { d->parseStack->pop(); #if defined(QT_QXML_DEBUG) - qDebug( "TQXmlSimpleReader: eat_ws (cont)" ); + tqDebug( "TQXmlSimpleReader: eat_ws (cont)" ); #endif } if ( !(this->*function)() ) { @@ -7324,14 +7324,14 @@ bool TQXmlSimpleReader::parseString() } else { state = d->parseStack->pop().state; #if defined(QT_QXML_DEBUG) - qDebug( "TQXmlSimpleReader: parseString (cont) in state %d", state ); + tqDebug( "TQXmlSimpleReader: parseString (cont) in state %d", state ); #endif if ( !d->parseStack->isEmpty() ) { ParseFunction function = d->parseStack->top().function; if ( function == &TQXmlSimpleReader::eat_ws ) { d->parseStack->pop(); #if defined(QT_QXML_DEBUG) - qDebug( "TQXmlSimpleReader: eat_ws (cont)" ); + tqDebug( "TQXmlSimpleReader: eat_ws (cont)" ); #endif } if ( !(this->*function)() ) { |