- def __init__(self, parent, ID=-1, pos=wx.DefaultPosition,
- size=wx.DefaultSize, style=0, name='IEHtmlWindow'):
+ def __init__(self, parent, id=-1, pos=wx.DefaultPosition,
+ size=wx.DefaultSize, style=0, name='IEHtmlWindow', ID=-1):
+ # in case the old 'ID' param is used as a keyword
+ if ID != -1:
+ id = ID
+