NOISSUE fix unable to log in issue

This commit is contained in:
Petr Mrázek 2023-09-17 12:56:41 +02:00
parent fe0f7b465d
commit 3cf0a37a28

View File

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