mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-04 19:10:09 +01:00
Fix how the const parameter types are specified,
the isConst flag isn't used here yet.
This commit is contained in:
@@ -72,11 +72,11 @@ def run():
|
|||||||
MethodDef(
|
MethodDef(
|
||||||
name='wxPyAxBaseWindow', isCtor=True, items=[
|
name='wxPyAxBaseWindow', isCtor=True, items=[
|
||||||
ParamDef(type='wxWindow*', name='parent'),
|
ParamDef(type='wxWindow*', name='parent'),
|
||||||
ParamDef(type='wxWindowID', name='id', isConst=True, default='-1'),
|
ParamDef(type='const wxWindowID', name='id', default='-1'),
|
||||||
ParamDef(type='wxPoint&', name='pos', isConst=True, default='wxDefaultPosition'),
|
ParamDef(type='const wxPoint&', name='pos', default='wxDefaultPosition'),
|
||||||
ParamDef(type='wxSize&', name='size', isConst=True, default='wxDefaultSize'),
|
ParamDef(type='const wxSize&', name='size', default='wxDefaultSize'),
|
||||||
ParamDef(type='long', name='style', default='0'),
|
ParamDef(type='long', name='style', default='0'),
|
||||||
ParamDef(type='wxString&', name='name', isConst=True, default='wxPanelNameStr'),
|
ParamDef(type='const wxString&', name='name', default='wxPanelNameStr'),
|
||||||
],
|
],
|
||||||
overloads=[
|
overloads=[
|
||||||
MethodDef(
|
MethodDef(
|
||||||
|
|||||||
Reference in New Issue
Block a user