Correction on commit #78110 as suggested by VZ

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@78139 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Jouk Jansen
2014-11-11 07:59:21 +00:00
parent ff4af7693e
commit e609b182a4

View File

@@ -192,7 +192,7 @@ public:
return (watcher == other.watcher) && (userData == other.userData);
}
bool operator!=(const WatcherWithUserData &other) const {
return (watcher != other.watcher) || (userData != other.userData);
return !(*this == other);
}
};