summaryrefslogtreecommitdiffstats
path: root/src/corelib/text/qstringconverter.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib/text/qstringconverter.h')
-rw-r--r--src/corelib/text/qstringconverter.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/corelib/text/qstringconverter.h b/src/corelib/text/qstringconverter.h
index 2bbff666e8..0049b937af 100644
--- a/src/corelib/text/qstringconverter.h
+++ b/src/corelib/text/qstringconverter.h
@@ -207,9 +207,9 @@ public:
{}
#if defined(Q_QDOC)
- QString operator()(const QString &);
- QString operator()(QStringView);
- QString operator()(const QChar *, qsizetype);
+ QByteArray operator()(const QString &in);
+ QByteArray operator()(QStringView in);
+ QByteArray operator()(const QChar *in, qsizetype length);
#else
template<typename T>
struct DecodedData
@@ -268,7 +268,7 @@ public:
#if defined(Q_QDOC)
QString operator()(const QByteArray &ba);
- QString operator()(const char *in, qsizetype length);
+ QString operator()(const char *in, qsizetype size);
QString operator()(const char *chars);
#else
template<typename T>