NOISSUE fix unable to log in issue

This commit is contained in:
Petr Mrázek 2023-09-17 12:56:41 +02:00
parent 17865bfd7d
commit 7450faaf13

View File

@ -77,10 +77,10 @@ public:
{ {
return m_ptr; return m_ptr;
} }
bool operator==(const shared_qobject_ptr<T>& other) { bool operator==(const shared_qobject_ptr<T>& other) const {
return m_ptr == other.m_ptr; return m_ptr == other.m_ptr;
} }
bool operator!=(const shared_qobject_ptr<T>& other) { bool operator!=(const shared_qobject_ptr<T>& other) const {
return m_ptr != other.m_ptr; return m_ptr != other.m_ptr;
} }