summaryrefslogtreecommitdiffstats
path: root/src/corelib
diff options
context:
space:
mode:
authorAhmad Samir <a.samirh78@gmail.com>2025-12-02 22:15:38 +0200
committerAhmad Samir <a.samirh78@gmail.com>2025-12-03 04:09:22 +0200
commit3085a553c53290158cb1dd7052f9226a01902b0c (patch)
tree28b14b61788bb8cac30b6f101b9ac5e389b5df0e /src/corelib
parente727989798fe0a3fede042aad1183afacb1c9f74 (diff)
QByteArray: move percentDecoded() to the correct section in removed_api
Found in API hash tag review. Amends 8f4adf0948937ff2f0139bb676d064f2b26febc4. Change-Id: I8c32c4fc2e4c9cd8e32f9d029800364432e5c7dd Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'src/corelib')
-rw-r--r--src/corelib/compat/removed_api.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/corelib/compat/removed_api.cpp b/src/corelib/compat/removed_api.cpp
index 7fe8aeb63b7..63fce94dfac 100644
--- a/src/corelib/compat/removed_api.cpp
+++ b/src/corelib/compat/removed_api.cpp
@@ -1291,13 +1291,6 @@ QByteArray QMetaEnum::valueToKeys(int value) const
#include "qmutex.h"
-#include "qbytearray.h"
-
-QByteArray QByteArray::percentDecoded(char percent) const
-{
- return fromPercentEncoding(*this, percent);
-}
-
#if QT_CONFIG(thread)
void QBasicMutex::destroyInternal(QMutexPrivate *d)
{
@@ -1495,6 +1488,13 @@ bool QObject::doSetProperty(const char *name, const QVariant *lvalue, QVariant *
#if QT_CORE_REMOVED_SINCE(6, 11)
+#include "qbytearray.h"
+
+QByteArray QByteArray::percentDecoded(char percent) const
+{
+ return fromPercentEncoding(*this, percent);
+}
+
#if QT_CONFIG(thread)
// some of the previously inlined API became removed
#include "qreadwritelock.h"