summaryrefslogtreecommitdiffstats
path: root/src/corelib/json/qjsonobject.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib/json/qjsonobject.cpp')
-rw-r--r--src/corelib/json/qjsonobject.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/corelib/json/qjsonobject.cpp b/src/corelib/json/qjsonobject.cpp
index b393701411..00cc2ddbd3 100644
--- a/src/corelib/json/qjsonobject.cpp
+++ b/src/corelib/json/qjsonobject.cpp
@@ -161,7 +161,6 @@ QJsonObject::~QJsonObject()
{
if (d && !d->ref.deref())
delete d;
- QJsonPrivate::ObjectUndefinedKeys::removeKeys(this); // ### Qt6 move it to ~QJsonValueRef
}
/*!
@@ -318,9 +317,14 @@ QJsonValue QJsonObject::operator [](const QString &key) const
*/
QJsonValueRef QJsonObject::operator [](const QString &key)
{
+ // ### somewhat inefficient, as we lookup the key twice if it doesn't yet exist
bool keyExists = false;
int index = o ? o->indexOf(key, &keyExists) : -1;
- return keyExists ? QJsonValueRef(this, index) : QJsonValueRef(this, key);
+ if (!keyExists) {
+ iterator i = insert(key, QJsonValue());
+ index = i.i;
+ }
+ return QJsonValueRef(this, index);
}
/*!
@@ -1034,9 +1038,7 @@ void QJsonObject::compact()
detach();
d->compact();
- using namespace QJsonPrivate;
- o = static_cast<Object *>(d->header->root());
- ObjectUndefinedKeys::removeKeys(this); // ### Qt6 move it to ~QJsonValueRef
+ o = static_cast<QJsonPrivate::Object *>(d->header->root());
}
/*!
@@ -1073,8 +1075,6 @@ void QJsonObject::setValueAt(int i, const QJsonValue &val)
insert(e->key(), val);
}
-QBasicMutex QJsonPrivate::ObjectUndefinedKeys::mutex;
-
#if !defined(QT_NO_DEBUG_STREAM) && !defined(QT_JSON_READONLY)
QDebug operator<<(QDebug dbg, const QJsonObject &o)
{