Skip to content

Commit

Permalink
NOISSUE fix unable to log in issue
Browse files Browse the repository at this point in the history
  • Loading branch information
peterix committed Sep 17, 2023
1 parent fe0f7b4 commit 3cf0a37
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions launcher/QObjectPtr.h
Expand Up @@ -77,10 +77,10 @@ class shared_qobject_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;
}
bool operator!=(const shared_qobject_ptr<T>& other) {
bool operator!=(const shared_qobject_ptr<T>& other) const {
return m_ptr != other.m_ptr;
}

Expand Down

0 comments on commit 3cf0a37

Please sign in to comment.