summaryrefslogtreecommitdiffstats
path: root/src/corelib/codecs/qtextcodec.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib/codecs/qtextcodec.cpp')
-rw-r--r--src/corelib/codecs/qtextcodec.cpp49
1 files changed, 0 insertions, 49 deletions
diff --git a/src/corelib/codecs/qtextcodec.cpp b/src/corelib/codecs/qtextcodec.cpp
index 86845c7..698ca9e 100644
--- a/src/corelib/codecs/qtextcodec.cpp
+++ b/src/corelib/codecs/qtextcodec.cpp
@@ -1163,19 +1163,6 @@ QTextDecoder* QTextCodec::makeDecoder() const
return new QTextDecoder(this);
}
-/*!
- Creates a QTextDecoder with a specified \a flags to decode chunks
- of \c{char *} data to create chunks of Unicode data.
-
- The caller is responsible for deleting the returned object.
-
- \since 4.7
-*/
-QTextDecoder* QTextCodec::makeDecoder(QTextCodec::ConversionFlags flags) const
-{
- return new QTextDecoder(this, flags);
-}
-
/*!
Creates a QTextEncoder which stores enough state to encode chunks
@@ -1189,19 +1176,6 @@ QTextEncoder* QTextCodec::makeEncoder() const
}
/*!
- Creates a QTextEncoder with a specified \a flags to encode chunks
- of Unicode data as \c{char *} data.
-
- The caller is responsible for deleting the returned object.
-
- \since 4.7
-*/
-QTextEncoder* QTextCodec::makeEncoder(QTextCodec::ConversionFlags flags) const
-{
- return new QTextEncoder(this, flags);
-}
-
-/*!
\fn QByteArray QTextCodec::fromUnicode(const QChar *input, int number,
ConverterState *state) const
@@ -1342,17 +1316,6 @@ QString QTextCodec::toUnicode(const char *chars) const
*/
/*!
- Constructs a text encoder for the given \a codec and conversion \a flags.
-
- \since 4.7
-*/
-QTextEncoder::QTextEncoder(const QTextCodec *codec, QTextCodec::ConversionFlags flags)
- : c(codec), state()
-{
- state.flags = flags;
-}
-
-/*!
Destroys the encoder.
*/
QTextEncoder::~QTextEncoder()
@@ -1429,18 +1392,6 @@ QByteArray QTextEncoder::fromUnicode(const QString& uc, int& lenInOut)
*/
/*!
- Constructs a text decoder for the given \a codec and conversion \a flags.
-
- \since 4.7
-*/
-
-QTextDecoder::QTextDecoder(const QTextCodec *codec, QTextCodec::ConversionFlags flags)
- : c(codec), state()
-{
- state.flags = flags;
-}
-
-/*!
Destroys the decoder.
*/
QTextDecoder::~QTextDecoder()