mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2025-12-16 09:40:07 +01:00
Ignore the void* version of the client data methods
This commit is contained in:
@@ -42,6 +42,12 @@ def run():
|
||||
assert isinstance(c, etgtools.ClassDef)
|
||||
tools.fixWindowClass(c)
|
||||
|
||||
# Ignore the methods setting and fetching client data as a void*. We have
|
||||
# a mapped type for the wxClientData alternatives that work well and are
|
||||
# hack free.
|
||||
c.find('SetItemClientData').ignore()
|
||||
c.find('GetItemClientData').ignore()
|
||||
|
||||
|
||||
c = module.find('wxRibbonButtonBarEvent')
|
||||
tools.fixEventClass(c)
|
||||
|
||||
@@ -42,6 +42,13 @@ def run():
|
||||
assert isinstance(c, etgtools.ClassDef)
|
||||
tools.fixWindowClass(c)
|
||||
|
||||
# Ignore the methods setting and fetching client data as a void*. We have
|
||||
# a mapped type for the wxClientData alternatives that work well and are
|
||||
# hack free.
|
||||
c.find('Append').findOverload('void *').ignore()
|
||||
c.find('SetItemClientData').ignore()
|
||||
c.find('GetItemClientData').ignore()
|
||||
|
||||
|
||||
c = module.find('wxRibbonGalleryEvent')
|
||||
tools.fixEventClass(c)
|
||||
|
||||
Reference in New Issue
Block a user