QTzTimeZoneCache: make findEntry() static
It doesn't need access to the members, so making it static both saves the implicit this pointer, and communicates to the reader that this is function doesn't access other QTzTimeZoneCache members. In particular, it proves that it doesn't really need to be called with m_mutex locked, cf. QTBUG-122138. Task-number: QTBUG-122138 Change-Id: I28c99be8d066c1647aaf7aa256b6400a6dd92955 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com> (cherry picked from commit 7862453ba9cbcb601b9aad59dd821ae49661de4a) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org> (cherry picked from commit 3265e2467d5312d16a2b30d66770abad2af6705a) (cherry picked from commit c4b0d1bd6d281f0c166d8ef3fa0cb69b9aed9cdc)
This commit is contained in:
parent
62e1607703
commit
3a6031a99f
@ -772,7 +772,7 @@ public:
|
||||
QTzTimeZoneCacheEntry fetchEntry(const QByteArray &ianaId);
|
||||
|
||||
private:
|
||||
QTzTimeZoneCacheEntry findEntry(const QByteArray &ianaId);
|
||||
static QTzTimeZoneCacheEntry findEntry(const QByteArray &ianaId);
|
||||
QCache<QByteArray, QTzTimeZoneCacheEntry> m_cache;
|
||||
QMutex m_mutex;
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user