mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-04 19:10:09 +01:00
Parameter names should not be mangled, as this causes mismatches between extractor and xml data: ``` SEVERE: Incompatibility between function/method signature and list of parameters in `wx.html.HtmlHelpWindow.__init__`: The parameter `WindowID` appears in the method signature but could not be found in the parameter list. ==> Function/Method signature from `extractors`: __init__(parent, WindowID, pos=wx.DefaultPosition, size=wx.DefaultSize, style=wx.TAB_TRAVERSAL|wx.BORDER_NONE, helpStyle=HF_DEFAULT_STYLE, data=None) ==> Parameter list from wxWidgets XML items: ['parent', 'wxWindowID', 'pos', 'size', 'style', 'helpStyle', 'data'] ``` ``` ==> Function/Method signature from `extractors`: SetAssertMode(AppAssertMode) ==> Parameter list from wxWidgets XML items: ['wxAppAssertMode'] ```