summaryrefslogtreecommitdiffstats
path: root/src/xml/qdom.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2012-03-01 13:24:30 -0600
committerTimothy Pearson <[email protected]>2012-03-01 13:24:30 -0600
commita830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0 (patch)
tree3910055c634e2ca44eacd2c892118634df9b3597 /src/xml/qdom.cpp
parentb0b53cc84f215df9b9bcce77253a6b7a9d300986 (diff)
downloadqt3-a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0.tar.gz
qt3-a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0.zip
Rename additional global TQt functions
Diffstat (limited to 'src/xml/qdom.cpp')
-rw-r--r--src/xml/qdom.cpp4
1 files changed, 2 insertions, 2 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;
}