summaryrefslogtreecommitdiffstats
path: root/src/corelib/codecs/qtextcodec.h
diff options
context:
space:
mode:
authorDenis Dzyubenko <denis.dzyubenko@nokia.com>2009-12-18 10:49:51 (GMT)
committerDenis Dzyubenko <denis.dzyubenko@nokia.com>2010-01-06 15:25:58 (GMT)
commit5529a356368b31998e859e3fb5f94e85c16447aa (patch)
treea593e4fbd0c91ef183ea0df10640b7a2c9ee2ebe /src/corelib/codecs/qtextcodec.h
parentf8780558e3fc68321a0dd6dcef611eeee0805a2e (diff)
downloadQt-5529a356368b31998e859e3fb5f94e85c16447aa.zip
Qt-5529a356368b31998e859e3fb5f94e85c16447aa.tar.gz
Qt-5529a356368b31998e859e3fb5f94e85c16447aa.tar.bz2
Temporary hackiesh solution to prevent BOM in the xml data.
We don't want to have byte-order-mark in the middle of the written string. Task-number: QTBUG-6893 Reviewed-by: Thiago
Diffstat (limited to 'src/corelib/codecs/qtextcodec.h')
-rw-r--r--src/corelib/codecs/qtextcodec.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/corelib/codecs/qtextcodec.h b/src/corelib/codecs/qtextcodec.h
index 75aafdd..d61cd6b 100644
--- a/src/corelib/codecs/qtextcodec.h
+++ b/src/corelib/codecs/qtextcodec.h
@@ -167,6 +167,9 @@ public:
private:
const QTextCodec *c;
QTextCodec::ConverterState state;
+
+ friend class QXmlStreamWriter;
+ friend class QXmlStreamWriterPrivate;
};
class Q_CORE_EXPORT QTextDecoder {