summaryrefslogtreecommitdiffstats
path: root/src/corelib
diff options
context:
space:
mode:
authorGiuseppe D'Angelo <giuseppe.dangelo@kdab.com>2019-10-18 14:15:40 +0200
committerGiuseppe D'Angelo <giuseppe.dangelo@kdab.com>2019-12-17 09:48:16 +0100
commitabbdd634cd545b8d5ec34a615538f9d4ff2baec3 (patch)
tree54833762fcd8a741660ea1749b4cb96fd0cbccf5 /src/corelib
parent4e04132264a1259d28dc55e1ad01f848562c4c6d (diff)
Get rid of the getter for QObjectPrivate::threadData
The dependent changes have now landed. Change-Id: I502377ab5603d67ada9e5577de1abfccdfa0fa09 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'src/corelib')
-rw-r--r--src/corelib/kernel/qobject_p.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/corelib/kernel/qobject_p.h b/src/corelib/kernel/qobject_p.h
index 1ebf8e7a07..838a9aa8c5 100644
--- a/src/corelib/kernel/qobject_p.h
+++ b/src/corelib/kernel/qobject_p.h
@@ -374,7 +374,6 @@ public:
}
public:
ExtraData *extraData; // extra data set by the user
- QThreadData *getThreadData() const { return threadData.loadAcquire(); }
// This atomic requires acquire/release semantics in a few places,
// e.g. QObject::moveToThread must synchronize with QCoreApplication::postEvent,
// because postEvent is thread-safe.