mirror of
https://github.com/MultiMC/MultiMC5.git
synced 2024-12-27 03:14:49 +00:00
NOISSUE fix unable to log in issue
This commit is contained in:
parent
17865bfd7d
commit
7450faaf13
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user