diff options
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 524c638..c83f27e 100644 --- a/src/xml/qdom.cpp +++ b/src/xml/qdom.cpp @@ -3686,7 +3686,7 @@ static QString encodeAttr( const QString& str ) i += 4; } else if (!isXmlChar(tmp[(int)i])) { QString repl = "&#x" + QString::number(tmp[(int)i].unicode(), 16) + ';'; - qWarning("QDom: saving invalid character %s, the document will not be well-formed", repl.latin1()); + tqWarning("QDom: 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 @@ QDomNodePrivate* QDomTextPrivate::cloneNode( bool deep) QDomTextPrivate* QDomTextPrivate::splitText( int offset ) { if ( !parent() ) { - qWarning( "QDomText::splitText The node has no parent. So I can not split" ); + tqWarning( "QDomText::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 1f184f1..9f8cd79 100644 --- a/src/xml/qsvgdevice.cpp +++ b/src/xml/qsvgdevice.cpp @@ -187,13 +187,13 @@ bool QSvgDevice::play( QPainter *painter ) pt->setPen( Qt::NoPen ); // SVG default pen and brush pt->setBrush( Qt::black ); if ( doc.isNull() ) { - qWarning( "QSvgDevice::play: No SVG data set." ); + tqWarning( "QSvgDevice::play: No SVG data set." ); return FALSE; } QDomNode svg = doc.namedItem( "svg" ); if ( svg.isNull() || !svg.isElement() ) { - qWarning( "QSvgDevice::play: Couldn't find any svg element." ); + tqWarning( "QSvgDevice::play: Couldn't find any svg element." ); return FALSE; } @@ -221,7 +221,7 @@ bool QSvgDevice::play( QPainter *painter ) QRegExp re( QString::fromLatin1("\\s*(\\S+)\\s*,?\\s*(\\S+)\\s*,?" "\\s*(\\S+)\\s*,?\\s*(\\S+)\\s*") ); if ( re.search( attr.namedItem( "viewBox" ).nodeValue() ) < 0 ) { - qWarning( "QSvgDevice::play: Invalid viewBox attribute."); + tqWarning( "QSvgDevice::play: Invalid viewBox attribute."); return FALSE; } else { double x = re.cap( 1 ).toDouble(); @@ -229,7 +229,7 @@ bool QSvgDevice::play( QPainter *painter ) double w = re.cap( 3 ).toDouble(); double h = re.cap( 4 ).toDouble(); if ( w < 0 || h < 0 ) { - qWarning( "QSvgDevice::play: Invalid viewBox dimension."); + tqWarning( "QSvgDevice::play: Invalid viewBox dimension."); return FALSE; } else if ( w == 0 || h == 0 ) { return TRUE; @@ -353,7 +353,7 @@ bool QSvgDevice::save( QIODevice *dev ) { #if defined(CHECK_RANGE) if ( !d->images.isEmpty() || !d->pixmaps.isEmpty() ) - qWarning( "QSvgDevice::save: skipping external images" ); + tqWarning( "QSvgDevice::save: skipping external images" ); #endif QTextStream s( dev ); @@ -419,7 +419,7 @@ int QSvgDevice::metric( int m ) const default: val = 0; #if defined(QT_CHECK_RANGE) - qWarning( "QSvgDevice::metric: Invalid metric command" ); + tqWarning( "QSvgDevice::metric: Invalid metric command" ); #endif } return val; @@ -714,7 +714,7 @@ bool QSvgDevice::cmd ( int c, QPainter *painter, QPDevCmdParam *p ) } default: #if defined(CHECK_RANGE) - qWarning( "QSVGDevice::cmd: Invalid command %d", c ); + tqWarning( "QSVGDevice::cmd: Invalid command %d", c ); #endif break; } @@ -981,7 +981,7 @@ bool QSvgDevice::play( const QDomNode &node ) // ### catch references to embedded .svg files QPixmap pix; if ( !pix.load( href ) ) { - qWarning( "QSvgDevice::play: Couldn't load image %s", href.latin1() ); + tqWarning( "QSvgDevice::play: Couldn't load image %s", href.latin1() ); break; } pt->drawPixmap( QRect( x1, y1, w, h ), pix ); @@ -1027,7 +1027,7 @@ bool QSvgDevice::play( const QDomNode &node ) break; } case InvalidElement: - qWarning( "QSvgDevice::play: unknown element type %s", + tqWarning( "QSvgDevice::play: unknown element type %s", node.nodeName().latin1() ); break; }; @@ -1114,7 +1114,7 @@ double QSvgDevice::parseLen( const QString &str, bool *ok, bool horiz ) const { QRegExp reg( QString::fromLatin1("([+-]?\\d*\\.*\\d*[Ee]?[+-]?\\d*)(em|ex|px|%|pt|pc|cm|mm|in|)$") ); if ( reg.search( str ) == -1 ) { - qWarning( "QSvgDevice::parseLen: couldn't parse %s ", str.latin1() ); + tqWarning( "QSvgDevice::parseLen: couldn't parse %s ", str.latin1() ); if ( ok ) *ok = FALSE; return 0.0; @@ -1143,7 +1143,7 @@ double QSvgDevice::parseLen( const QString &str, bool *ok, bool horiz ) const else if ( u == "pc" ) dbl *= m.logicalDpiX() / 6.0; else - qWarning( "QSvgDevice::parseLen: Unknown unit %s", u.latin1() ); + tqWarning( "QSvgDevice::parseLen: Unknown unit %s", u.latin1() ); } if ( ok ) *ok = TRUE; @@ -1241,7 +1241,7 @@ void QSvgDevice::setStyleProperty( const QString &prop, const QString &val, else if ( val == "italic" ) font->setItalic( TRUE ); else - qWarning( "QSvgDevice::setStyleProperty: unhandled " + tqWarning( "QSvgDevice::setStyleProperty: unhandled " "font-style: %s", val.latin1() ); } else if ( prop == "font-weight" ) { int w = font->weight(); @@ -1373,7 +1373,7 @@ void QSvgDevice::drawPath( const QString &data ) cmd = mode; // continue in previous mode idx--; } else { - qWarning( "QSvgDevice::drawPath: Unknown command" ); + tqWarning( "QSvgDevice::drawPath: Unknown command" ); return; } } @@ -1385,7 +1385,7 @@ void QSvgDevice::drawPath( const QString &data ) for ( int i = 0; i < numArgs; i++ ) { int pos = reg.search( data, idx ); if ( pos == -1 ) { - qWarning( "QSvgDevice::drawPath: Error parsing arguments" ); + tqWarning( "QSvgDevice::drawPath: Error parsing arguments" ); return; } arg[ i ] = reg.cap( 1 ).toDouble(); diff --git a/src/xml/qxml.cpp b/src/xml/qxml.cpp index 010389b..97759a5 100644 --- a/src/xml/qxml.cpp +++ b/src/xml/qxml.cpp @@ -2725,7 +2725,7 @@ bool QXmlSimpleReader::feature( const QString& 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 QXmlSimpleReader::setFeature( const QString& 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 QXmlSimpleReader::parseProlog() } else { state = d->parseStack->pop().state; #if defined(QT_QXML_DEBUG) - qDebug( "QXmlSimpleReader: parseProlog (cont) in state %d", state ); + tqDebug( "QXmlSimpleReader: parseProlog (cont) in state %d", state ); #endif if ( !d->parseStack->isEmpty() ) { ParseFunction function = d->parseStack->top().function; if ( function == &QXmlSimpleReader::eat_ws ) { d->parseStack->pop(); #if defined(QT_QXML_DEBUG) - qDebug( "QXmlSimpleReader: eat_ws (cont)" ); + tqDebug( "QXmlSimpleReader: eat_ws (cont)" ); #endif } if ( !(this->*function)() ) { @@ -3370,14 +3370,14 @@ bool QXmlSimpleReader::parseElement() } else { state = d->parseStack->pop().state; #if defined(QT_QXML_DEBUG) - qDebug( "QXmlSimpleReader: parseElement (cont) in state %d", state ); + tqDebug( "QXmlSimpleReader: parseElement (cont) in state %d", state ); #endif if ( !d->parseStack->isEmpty() ) { ParseFunction function = d->parseStack->top().function; if ( function == &QXmlSimpleReader::eat_ws ) { d->parseStack->pop(); #if defined(QT_QXML_DEBUG) - qDebug( "QXmlSimpleReader: eat_ws (cont)" ); + tqDebug( "QXmlSimpleReader: eat_ws (cont)" ); #endif } if ( !(this->*function)() ) { @@ -3734,14 +3734,14 @@ bool QXmlSimpleReader::parseContent() } else { state = d->parseStack->pop().state; #if defined(QT_QXML_DEBUG) - qDebug( "QXmlSimpleReader: parseContent (cont) in state %d", state ); + tqDebug( "QXmlSimpleReader: parseContent (cont) in state %d", state ); #endif if ( !d->parseStack->isEmpty() ) { ParseFunction function = d->parseStack->top().function; if ( function == &QXmlSimpleReader::eat_ws ) { d->parseStack->pop(); #if defined(QT_QXML_DEBUG) - qDebug( "QXmlSimpleReader: eat_ws (cont)" ); + tqDebug( "QXmlSimpleReader: eat_ws (cont)" ); #endif } if ( !(this->*function)() ) { @@ -4035,14 +4035,14 @@ bool QXmlSimpleReader::parseMisc() } else { state = d->parseStack->pop().state; #if defined(QT_QXML_DEBUG) - qDebug( "QXmlSimpleReader: parseMisc (cont) in state %d", state ); + tqDebug( "QXmlSimpleReader: parseMisc (cont) in state %d", state ); #endif if ( !d->parseStack->isEmpty() ) { ParseFunction function = d->parseStack->top().function; if ( function == &QXmlSimpleReader::eat_ws ) { d->parseStack->pop(); #if defined(QT_QXML_DEBUG) - qDebug( "QXmlSimpleReader: eat_ws (cont)" ); + tqDebug( "QXmlSimpleReader: eat_ws (cont)" ); #endif } if ( !(this->*function)() ) { @@ -4189,14 +4189,14 @@ bool QXmlSimpleReader::parsePI() } else { state = d->parseStack->pop().state; #if defined(QT_QXML_DEBUG) - qDebug( "QXmlSimpleReader: parsePI (cont) in state %d", state ); + tqDebug( "QXmlSimpleReader: parsePI (cont) in state %d", state ); #endif if ( !d->parseStack->isEmpty() ) { ParseFunction function = d->parseStack->top().function; if ( function == &QXmlSimpleReader::eat_ws ) { d->parseStack->pop(); #if defined(QT_QXML_DEBUG) - qDebug( "QXmlSimpleReader: eat_ws (cont)" ); + tqDebug( "QXmlSimpleReader: eat_ws (cont)" ); #endif } if ( !(this->*function)() ) { @@ -4418,14 +4418,14 @@ bool QXmlSimpleReader::parseDoctype() } else { state = d->parseStack->pop().state; #if defined(QT_QXML_DEBUG) - qDebug( "QXmlSimpleReader: parseDoctype (cont) in state %d", state ); + tqDebug( "QXmlSimpleReader: parseDoctype (cont) in state %d", state ); #endif if ( !d->parseStack->isEmpty() ) { ParseFunction function = d->parseStack->top().function; if ( function == &QXmlSimpleReader::eat_ws ) { d->parseStack->pop(); #if defined(QT_QXML_DEBUG) - qDebug( "QXmlSimpleReader: eat_ws (cont)" ); + tqDebug( "QXmlSimpleReader: eat_ws (cont)" ); #endif } if ( !(this->*function)() ) { @@ -4620,14 +4620,14 @@ bool QXmlSimpleReader::parseExternalID() } else { state = d->parseStack->pop().state; #if defined(QT_QXML_DEBUG) - qDebug( "QXmlSimpleReader: parseExternalID (cont) in state %d", state ); + tqDebug( "QXmlSimpleReader: parseExternalID (cont) in state %d", state ); #endif if ( !d->parseStack->isEmpty() ) { ParseFunction function = d->parseStack->top().function; if ( function == &QXmlSimpleReader::eat_ws ) { d->parseStack->pop(); #if defined(QT_QXML_DEBUG) - qDebug( "QXmlSimpleReader: eat_ws (cont)" ); + tqDebug( "QXmlSimpleReader: eat_ws (cont)" ); #endif } if ( !(this->*function)() ) { @@ -4781,14 +4781,14 @@ bool QXmlSimpleReader::parseMarkupdecl() } else { state = d->parseStack->pop().state; #if defined(QT_QXML_DEBUG) - qDebug( "QXmlSimpleReader: parseMarkupdecl (cont) in state %d", state ); + tqDebug( "QXmlSimpleReader: parseMarkupdecl (cont) in state %d", state ); #endif if ( !d->parseStack->isEmpty() ) { ParseFunction function = d->parseStack->top().function; if ( function == &QXmlSimpleReader::eat_ws ) { d->parseStack->pop(); #if defined(QT_QXML_DEBUG) - qDebug( "QXmlSimpleReader: eat_ws (cont)" ); + tqDebug( "QXmlSimpleReader: eat_ws (cont)" ); #endif } if ( !(this->*function)() ) { @@ -4938,14 +4938,14 @@ bool QXmlSimpleReader::parsePEReference() } else { state = d->parseStack->pop().state; #if defined(QT_QXML_DEBUG) - qDebug( "QXmlSimpleReader: parsePEReference (cont) in state %d", state ); + tqDebug( "QXmlSimpleReader: parsePEReference (cont) in state %d", state ); #endif if ( !d->parseStack->isEmpty() ) { ParseFunction function = d->parseStack->top().function; if ( function == &QXmlSimpleReader::eat_ws ) { d->parseStack->pop(); #if defined(QT_QXML_DEBUG) - qDebug( "QXmlSimpleReader: eat_ws (cont)" ); + tqDebug( "QXmlSimpleReader: eat_ws (cont)" ); #endif } if ( !(this->*function)() ) { @@ -5110,14 +5110,14 @@ bool QXmlSimpleReader::parseAttlistDecl() } else { state = d->parseStack->pop().state; #if defined(QT_QXML_DEBUG) - qDebug( "QXmlSimpleReader: parseAttlistDecl (cont) in state %d", state ); + tqDebug( "QXmlSimpleReader: parseAttlistDecl (cont) in state %d", state ); #endif if ( !d->parseStack->isEmpty() ) { ParseFunction function = d->parseStack->top().function; if ( function == &QXmlSimpleReader::eat_ws ) { d->parseStack->pop(); #if defined(QT_QXML_DEBUG) - qDebug( "QXmlSimpleReader: eat_ws (cont)" ); + tqDebug( "QXmlSimpleReader: eat_ws (cont)" ); #endif } if ( !(this->*function)() ) { @@ -5325,14 +5325,14 @@ bool QXmlSimpleReader::parseAttType() } else { state = d->parseStack->pop().state; #if defined(QT_QXML_DEBUG) - qDebug( "QXmlSimpleReader: parseAttType (cont) in state %d", state ); + tqDebug( "QXmlSimpleReader: parseAttType (cont) in state %d", state ); #endif if ( !d->parseStack->isEmpty() ) { ParseFunction function = d->parseStack->top().function; if ( function == &QXmlSimpleReader::eat_ws ) { d->parseStack->pop(); #if defined(QT_QXML_DEBUG) - qDebug( "QXmlSimpleReader: eat_ws (cont)" ); + tqDebug( "QXmlSimpleReader: eat_ws (cont)" ); #endif } if ( !(this->*function)() ) { @@ -5545,14 +5545,14 @@ bool QXmlSimpleReader::parseAttValue() } else { state = d->parseStack->pop().state; #if defined(QT_QXML_DEBUG) - qDebug( "QXmlSimpleReader: parseAttValue (cont) in state %d", state ); + tqDebug( "QXmlSimpleReader: parseAttValue (cont) in state %d", state ); #endif if ( !d->parseStack->isEmpty() ) { ParseFunction function = d->parseStack->top().function; if ( function == &QXmlSimpleReader::eat_ws ) { d->parseStack->pop(); #if defined(QT_QXML_DEBUG) - qDebug( "QXmlSimpleReader: eat_ws (cont)" ); + tqDebug( "QXmlSimpleReader: eat_ws (cont)" ); #endif } if ( !(this->*function)() ) { @@ -5686,14 +5686,14 @@ bool QXmlSimpleReader::parseElementDecl() } else { state = d->parseStack->pop().state; #if defined(QT_QXML_DEBUG) - qDebug( "QXmlSimpleReader: parseElementDecl (cont) in state %d", state ); + tqDebug( "QXmlSimpleReader: parseElementDecl (cont) in state %d", state ); #endif if ( !d->parseStack->isEmpty() ) { ParseFunction function = d->parseStack->top().function; if ( function == &QXmlSimpleReader::eat_ws ) { d->parseStack->pop(); #if defined(QT_QXML_DEBUG) - qDebug( "QXmlSimpleReader: eat_ws (cont)" ); + tqDebug( "QXmlSimpleReader: eat_ws (cont)" ); #endif } if ( !(this->*function)() ) { @@ -5894,14 +5894,14 @@ bool QXmlSimpleReader::parseNotationDecl() } else { state = d->parseStack->pop().state; #if defined(QT_QXML_DEBUG) - qDebug( "QXmlSimpleReader: parseNotationDecl (cont) in state %d", state ); + tqDebug( "QXmlSimpleReader: parseNotationDecl (cont) in state %d", state ); #endif if ( !d->parseStack->isEmpty() ) { ParseFunction function = d->parseStack->top().function; if ( function == &QXmlSimpleReader::eat_ws ) { d->parseStack->pop(); #if defined(QT_QXML_DEBUG) - qDebug( "QXmlSimpleReader: eat_ws (cont)" ); + tqDebug( "QXmlSimpleReader: eat_ws (cont)" ); #endif } if ( !(this->*function)() ) { @@ -6037,14 +6037,14 @@ bool QXmlSimpleReader::parseChoiceSeq() } else { state = d->parseStack->pop().state; #if defined(QT_QXML_DEBUG) - qDebug( "QXmlSimpleReader: parseChoiceSeq (cont) in state %d", state ); + tqDebug( "QXmlSimpleReader: parseChoiceSeq (cont) in state %d", state ); #endif if ( !d->parseStack->isEmpty() ) { ParseFunction function = d->parseStack->top().function; if ( function == &QXmlSimpleReader::eat_ws ) { d->parseStack->pop(); #if defined(QT_QXML_DEBUG) - qDebug( "QXmlSimpleReader: eat_ws (cont)" ); + tqDebug( "QXmlSimpleReader: eat_ws (cont)" ); #endif } if ( !(this->*function)() ) { @@ -6201,14 +6201,14 @@ bool QXmlSimpleReader::parseEntityDecl() } else { state = d->parseStack->pop().state; #if defined(QT_QXML_DEBUG) - qDebug( "QXmlSimpleReader: parseEntityDecl (cont) in state %d", state ); + tqDebug( "QXmlSimpleReader: parseEntityDecl (cont) in state %d", state ); #endif if ( !d->parseStack->isEmpty() ) { ParseFunction function = d->parseStack->top().function; if ( function == &QXmlSimpleReader::eat_ws ) { d->parseStack->pop(); #if defined(QT_QXML_DEBUG) - qDebug( "QXmlSimpleReader: eat_ws (cont)" ); + tqDebug( "QXmlSimpleReader: eat_ws (cont)" ); #endif } if ( !(this->*function)() ) { @@ -6469,14 +6469,14 @@ bool QXmlSimpleReader::parseEntityValue() } else { state = d->parseStack->pop().state; #if defined(QT_QXML_DEBUG) - qDebug( "QXmlSimpleReader: parseEntityValue (cont) in state %d", state ); + tqDebug( "QXmlSimpleReader: parseEntityValue (cont) in state %d", state ); #endif if ( !d->parseStack->isEmpty() ) { ParseFunction function = d->parseStack->top().function; if ( function == &QXmlSimpleReader::eat_ws ) { d->parseStack->pop(); #if defined(QT_QXML_DEBUG) - qDebug( "QXmlSimpleReader: eat_ws (cont)" ); + tqDebug( "QXmlSimpleReader: eat_ws (cont)" ); #endif } if ( !(this->*function)() ) { @@ -6587,14 +6587,14 @@ bool QXmlSimpleReader::parseComment() } else { state = d->parseStack->pop().state; #if defined(QT_QXML_DEBUG) - qDebug( "QXmlSimpleReader: parseComment (cont) in state %d", state ); + tqDebug( "QXmlSimpleReader: parseComment (cont) in state %d", state ); #endif if ( !d->parseStack->isEmpty() ) { ParseFunction function = d->parseStack->top().function; if ( function == &QXmlSimpleReader::eat_ws ) { d->parseStack->pop(); #if defined(QT_QXML_DEBUG) - qDebug( "QXmlSimpleReader: eat_ws (cont)" ); + tqDebug( "QXmlSimpleReader: eat_ws (cont)" ); #endif } if ( !(this->*function)() ) { @@ -6698,14 +6698,14 @@ bool QXmlSimpleReader::parseAttribute() } else { state = d->parseStack->pop().state; #if defined(QT_QXML_DEBUG) - qDebug( "QXmlSimpleReader: parseAttribute (cont) in state %d", state ); + tqDebug( "QXmlSimpleReader: parseAttribute (cont) in state %d", state ); #endif if ( !d->parseStack->isEmpty() ) { ParseFunction function = d->parseStack->top().function; if ( function == &QXmlSimpleReader::eat_ws ) { d->parseStack->pop(); #if defined(QT_QXML_DEBUG) - qDebug( "QXmlSimpleReader: eat_ws (cont)" ); + tqDebug( "QXmlSimpleReader: eat_ws (cont)" ); #endif } if ( !(this->*function)() ) { @@ -6804,14 +6804,14 @@ bool QXmlSimpleReader::parseName() } else { state = d->parseStack->pop().state; #if defined(QT_QXML_DEBUG) - qDebug( "QXmlSimpleReader: parseName (cont) in state %d", state ); + tqDebug( "QXmlSimpleReader: parseName (cont) in state %d", state ); #endif if ( !d->parseStack->isEmpty() ) { ParseFunction function = d->parseStack->top().function; if ( function == &QXmlSimpleReader::eat_ws ) { d->parseStack->pop(); #if defined(QT_QXML_DEBUG) - qDebug( "QXmlSimpleReader: eat_ws (cont)" ); + tqDebug( "QXmlSimpleReader: eat_ws (cont)" ); #endif } if ( !(this->*function)() ) { @@ -6889,14 +6889,14 @@ bool QXmlSimpleReader::parseNmtoken() } else { state = d->parseStack->pop().state; #if defined(QT_QXML_DEBUG) - qDebug( "QXmlSimpleReader: parseNmtoken (cont) in state %d", state ); + tqDebug( "QXmlSimpleReader: parseNmtoken (cont) in state %d", state ); #endif if ( !d->parseStack->isEmpty() ) { ParseFunction function = d->parseStack->top().function; if ( function == &QXmlSimpleReader::eat_ws ) { d->parseStack->pop(); #if defined(QT_QXML_DEBUG) - qDebug( "QXmlSimpleReader: eat_ws (cont)" ); + tqDebug( "QXmlSimpleReader: eat_ws (cont)" ); #endif } if ( !(this->*function)() ) { @@ -6997,14 +6997,14 @@ bool QXmlSimpleReader::parseReference() } else { state = d->parseStack->pop().state; #if defined(QT_QXML_DEBUG) - qDebug( "QXmlSimpleReader: parseReference (cont) in state %d", state ); + tqDebug( "QXmlSimpleReader: parseReference (cont) in state %d", state ); #endif if ( !d->parseStack->isEmpty() ) { ParseFunction function = d->parseStack->top().function; if ( function == &QXmlSimpleReader::eat_ws ) { d->parseStack->pop(); #if defined(QT_QXML_DEBUG) - qDebug( "QXmlSimpleReader: eat_ws (cont)" ); + tqDebug( "QXmlSimpleReader: eat_ws (cont)" ); #endif } if ( !(this->*function)() ) { @@ -7324,14 +7324,14 @@ bool QXmlSimpleReader::parseString() } else { state = d->parseStack->pop().state; #if defined(QT_QXML_DEBUG) - qDebug( "QXmlSimpleReader: parseString (cont) in state %d", state ); + tqDebug( "QXmlSimpleReader: parseString (cont) in state %d", state ); #endif if ( !d->parseStack->isEmpty() ) { ParseFunction function = d->parseStack->top().function; if ( function == &QXmlSimpleReader::eat_ws ) { d->parseStack->pop(); #if defined(QT_QXML_DEBUG) - qDebug( "QXmlSimpleReader: eat_ws (cont)" ); + tqDebug( "QXmlSimpleReader: eat_ws (cont)" ); #endif } if ( !(this->*function)() ) { |