diff options
author | Anders Ahlen <anders.ahlen@tieto.com> | 2009-12-11 12:00:47 +0100 |
---|---|---|
committer | Thiago Macieira <thiago.macieira@nokia.com> | 2009-12-11 12:03:29 +0100 |
commit | 669cb438384f1ceafd4b2ee783b9a52d7110ccf7 (patch) | |
tree | e84ad59acab635185ed8393d093827e9ca7d6735 /src/corelib | |
parent | 6c161d6cca6c08843b479c00fffb9c7217aec505 (diff) | |
download | qt4-tools-669cb438384f1ceafd4b2ee783b9a52d7110ccf7.tar.gz |
Document QTextEncoder::fromUnicode as QT3 support member
Make deprecated
QTextEncoder::fromUnicode ( const QString & uc, int & lenInOut )
documented as QT3 support member
Task-number: QTBUG-6614
Merge-request: 399
Reviewed-by: Thiago Macieira <thiago.macieira@nokia.com>
Diffstat (limited to 'src/corelib')
-rw-r--r-- | src/corelib/codecs/qtextcodec.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/codecs/qtextcodec.h b/src/corelib/codecs/qtextcodec.h index f8317002a8..617027225b 100644 --- a/src/corelib/codecs/qtextcodec.h +++ b/src/corelib/codecs/qtextcodec.h @@ -161,7 +161,7 @@ public: QByteArray fromUnicode(const QString& str); QByteArray fromUnicode(const QChar *uc, int len); #ifdef QT3_SUPPORT - QByteArray fromUnicode(const QString& uc, int& lenInOut); + QT3_SUPPORT QByteArray fromUnicode(const QString& uc, int& lenInOut); #endif bool hasFailure() const; private: |