summaryrefslogtreecommitdiffstats
path: root/src/corelib/tools/qmap.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib/tools/qmap.h')
-rw-r--r--src/corelib/tools/qmap.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/corelib/tools/qmap.h b/src/corelib/tools/qmap.h
index 2780c46b7d..d09fa361a0 100644
--- a/src/corelib/tools/qmap.h
+++ b/src/corelib/tools/qmap.h
@@ -355,8 +355,6 @@ public:
return i != d->m.end();
}
- // ### Qt 6: deprecate value->key lookup.
- //Q_DECL_DEPRECATED_X("This function is inefficient; don't use it")
Key key(const T &value, const Key &defaultKey = Key()) const
{
if (!d)
@@ -390,7 +388,6 @@ public:
return value(key);
}
- // ### Qt 6: this stuff should be deprecated as well
QList<Key> keys() const
{
if (!d)
@@ -965,8 +962,6 @@ public:
return find(key, value) != end();
}
- // ### Qt 6: deprecate value->key lookup.
- //Q_DECL_DEPRECATED_X("This function is inefficient; don't use it")
Key key(const T &value, const Key &defaultKey = Key()) const
{
if (!d)
@@ -985,7 +980,6 @@ public:
return defaultValue;
}
- // ### Qt 6: deprecate value->key lookup.
QList<Key> keys() const
{
if (!d)