mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-07 04:20:07 +01:00
Merge pull request #390 from RobinD42/fix-issue373-part2
The proper slot name is __ne__, not __neq__
This commit is contained in:
@@ -45,7 +45,7 @@ def run():
|
||||
c.addCppMethod('bool', '__eq__', '(const wxTreeItemId& other)', """\
|
||||
return *self == *other;
|
||||
""")
|
||||
c.addCppMethod('bool', '__neq__', '(const wxTreeItemId& other)', """\
|
||||
c.addCppMethod('bool', '__ne__', '(const wxTreeItemId& other)', """\
|
||||
return *self != *other;
|
||||
""")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user