summaryrefslogtreecommitdiffstats
path: root/src/xml/qdom.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-28 22:31:39 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-28 22:31:39 -0600
commit41bb408dde90e755b07cd2ab8a9bdec7548c84b0 (patch)
tree6d4d5407c000add30aa78630e009c0e5d633e440 /src/xml/qdom.cpp
parent1740cd279522c060e738bbbffacab83355d2b794 (diff)
downloadtqt3-41bb408dde90e755b07cd2ab8a9bdec7548c84b0.tar.gz
tqt3-41bb408dde90e755b07cd2ab8a9bdec7548c84b0.zip
Automated conversion from qt3
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 954321c4..44f07346 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;
}