summaryrefslogtreecommitdiffstats
path: root/src/xml
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-02 02:11:59 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-02 02:11:59 -0600
commit9a75b154bf0732aa3a501b6e31e566e06c5f8a31 (patch)
treedf1e10cc7504665622d096f9ba80dc9e56f3afb8 /src/xml
parenta830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0 (diff)
downloadqt3-9a75b154bf0732aa3a501b6e31e566e06c5f8a31.tar.gz
qt3-9a75b154bf0732aa3a501b6e31e566e06c5f8a31.zip
Undo prior accidental commit
Diffstat (limited to 'src/xml')
-rw-r--r--src/xml/qdom.cpp4
-rw-r--r--src/xml/qsvgdevice.cpp28
-rw-r--r--src/xml/qxml.cpp96
3 files changed, 64 insertions, 64 deletions
diff --git a/src/xml/qdom.cpp b/src/xml/qdom.cpp
index c83f27e..524c638 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) + ';';
- tqWarning("QDom: saving invalid character %s, the document will not be well-formed", repl.latin1());
+ qWarning("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() ) {
- tqWarning( "QDomText::splitText The node has no parent. So I can not split" );
+ qWarning( "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 9f8cd79..1f184f1 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() ) {
- tqWarning( "QSvgDevice::play: No SVG data set." );
+ qWarning( "QSvgDevice::play: No SVG data set." );
return FALSE;
}
QDomNode svg = doc.namedItem( "svg" );
if ( svg.isNull() || !svg.isElement() ) {
- tqWarning( "QSvgDevice::play: Couldn't find any svg element." );
+ qWarning( "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 ) {
- tqWarning( "QSvgDevice::play: Invalid viewBox attribute.");
+ qWarning( "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 ) {
- tqWarning( "QSvgDevice::play: Invalid viewBox dimension.");
+ qWarning( "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() )
- tqWarning( "QSvgDevice::save: skipping external images" );
+ qWarning( "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)
- tqWarning( "QSvgDevice::metric: Invalid metric command" );
+ qWarning( "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)
- tqWarning( "QSVGDevice::cmd: Invalid command %d", c );
+ qWarning( "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 ) ) {
- tqWarning( "QSvgDevice::play: Couldn't load image %s", href.latin1() );
+ qWarning( "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:
- tqWarning( "QSvgDevice::play: unknown element type %s",
+ qWarning( "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 ) {
- tqWarning( "QSvgDevice::parseLen: couldn't parse %s ", str.latin1() );
+ qWarning( "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
- tqWarning( "QSvgDevice::parseLen: Unknown unit %s", u.latin1() );
+ qWarning( "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
- tqWarning( "QSvgDevice::setStyleProperty: unhandled "
+ qWarning( "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 {
- tqWarning( "QSvgDevice::drawPath: Unknown command" );
+ qWarning( "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 ) {
- tqWarning( "QSvgDevice::drawPath: Error parsing arguments" );
+ qWarning( "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 97759a5..010389b 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 {
- tqWarning( "Unknown feature %s", name.latin1() );
+ qWarning( "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 {
- tqWarning( "Unknown feature %s", name.latin1() );
+ qWarning( "Unknown feature %s", name.latin1() );
}
}
@@ -3182,14 +3182,14 @@ bool QXmlSimpleReader::parseProlog()
} else {
state = d->parseStack->pop().state;
#if defined(QT_QXML_DEBUG)
- tqDebug( "QXmlSimpleReader: parseProlog (cont) in state %d", state );
+ qDebug( "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)
- tqDebug( "QXmlSimpleReader: eat_ws (cont)" );
+ qDebug( "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)
- tqDebug( "QXmlSimpleReader: parseElement (cont) in state %d", state );
+ qDebug( "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)
- tqDebug( "QXmlSimpleReader: eat_ws (cont)" );
+ qDebug( "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)
- tqDebug( "QXmlSimpleReader: parseContent (cont) in state %d", state );
+ qDebug( "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)
- tqDebug( "QXmlSimpleReader: eat_ws (cont)" );
+ qDebug( "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)
- tqDebug( "QXmlSimpleReader: parseMisc (cont) in state %d", state );
+ qDebug( "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)
- tqDebug( "QXmlSimpleReader: eat_ws (cont)" );
+ qDebug( "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)
- tqDebug( "QXmlSimpleReader: parsePI (cont) in state %d", state );
+ qDebug( "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)
- tqDebug( "QXmlSimpleReader: eat_ws (cont)" );
+ qDebug( "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)
- tqDebug( "QXmlSimpleReader: parseDoctype (cont) in state %d", state );
+ qDebug( "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)
- tqDebug( "QXmlSimpleReader: eat_ws (cont)" );
+ qDebug( "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)
- tqDebug( "QXmlSimpleReader: parseExternalID (cont) in state %d", state );
+ qDebug( "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)
- tqDebug( "QXmlSimpleReader: eat_ws (cont)" );
+ qDebug( "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)
- tqDebug( "QXmlSimpleReader: parseMarkupdecl (cont) in state %d", state );
+ qDebug( "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)
- tqDebug( "QXmlSimpleReader: eat_ws (cont)" );
+ qDebug( "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)
- tqDebug( "QXmlSimpleReader: parsePEReference (cont) in state %d", state );
+ qDebug( "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)
- tqDebug( "QXmlSimpleReader: eat_ws (cont)" );
+ qDebug( "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)
- tqDebug( "QXmlSimpleReader: parseAttlistDecl (cont) in state %d", state );
+ qDebug( "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)
- tqDebug( "QXmlSimpleReader: eat_ws (cont)" );
+ qDebug( "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)
- tqDebug( "QXmlSimpleReader: parseAttType (cont) in state %d", state );
+ qDebug( "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)
- tqDebug( "QXmlSimpleReader: eat_ws (cont)" );
+ qDebug( "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)
- tqDebug( "QXmlSimpleReader: parseAttValue (cont) in state %d", state );
+ qDebug( "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)
- tqDebug( "QXmlSimpleReader: eat_ws (cont)" );
+ qDebug( "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)
- tqDebug( "QXmlSimpleReader: parseElementDecl (cont) in state %d", state );
+ qDebug( "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)
- tqDebug( "QXmlSimpleReader: eat_ws (cont)" );
+ qDebug( "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)
- tqDebug( "QXmlSimpleReader: parseNotationDecl (cont) in state %d", state );
+ qDebug( "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)
- tqDebug( "QXmlSimpleReader: eat_ws (cont)" );
+ qDebug( "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)
- tqDebug( "QXmlSimpleReader: parseChoiceSeq (cont) in state %d", state );
+ qDebug( "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)
- tqDebug( "QXmlSimpleReader: eat_ws (cont)" );
+ qDebug( "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)
- tqDebug( "QXmlSimpleReader: parseEntityDecl (cont) in state %d", state );
+ qDebug( "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)
- tqDebug( "QXmlSimpleReader: eat_ws (cont)" );
+ qDebug( "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)
- tqDebug( "QXmlSimpleReader: parseEntityValue (cont) in state %d", state );
+ qDebug( "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)
- tqDebug( "QXmlSimpleReader: eat_ws (cont)" );
+ qDebug( "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)
- tqDebug( "QXmlSimpleReader: parseComment (cont) in state %d", state );
+ qDebug( "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)
- tqDebug( "QXmlSimpleReader: eat_ws (cont)" );
+ qDebug( "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)
- tqDebug( "QXmlSimpleReader: parseAttribute (cont) in state %d", state );
+ qDebug( "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)
- tqDebug( "QXmlSimpleReader: eat_ws (cont)" );
+ qDebug( "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)
- tqDebug( "QXmlSimpleReader: parseName (cont) in state %d", state );
+ qDebug( "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)
- tqDebug( "QXmlSimpleReader: eat_ws (cont)" );
+ qDebug( "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)
- tqDebug( "QXmlSimpleReader: parseNmtoken (cont) in state %d", state );
+ qDebug( "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)
- tqDebug( "QXmlSimpleReader: eat_ws (cont)" );
+ qDebug( "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)
- tqDebug( "QXmlSimpleReader: parseReference (cont) in state %d", state );
+ qDebug( "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)
- tqDebug( "QXmlSimpleReader: eat_ws (cont)" );
+ qDebug( "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)
- tqDebug( "QXmlSimpleReader: parseString (cont) in state %d", state );
+ qDebug( "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)
- tqDebug( "QXmlSimpleReader: eat_ws (cont)" );
+ qDebug( "QXmlSimpleReader: eat_ws (cont)" );
#endif
}
if ( !(this->*function)() ) {