git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24541 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
15 lines
565 B
Python
15 lines
565 B
Python
## This file reverse renames symbols in the wx package to give
|
|
## them their wx prefix again, for backwards compatibility.
|
|
|
|
import wx.lib.buttons
|
|
|
|
__doc__ = wx.lib.buttons.__doc__
|
|
|
|
wxGenButtonEvent = wx.lib.buttons.GenButtonEvent
|
|
wxGenButton = wx.lib.buttons.GenButton
|
|
wxGenBitmapButton = wx.lib.buttons.GenBitmapButton
|
|
wxGenBitmapTextButton = wx.lib.buttons.GenBitmapTextButton
|
|
wxGenToggleButton = wx.lib.buttons.GenToggleButton
|
|
wxGenBitmapToggleButton = wx.lib.buttons.GenBitmapToggleButton
|
|
wxGenBitmapTextToggleButton = wx.lib.buttons.GenBitmapTextToggleButton
|