changed toggle to bool type for xxxTool

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@19023 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Roman Rolinsky
2003-01-30 10:21:32 +00:00
parent 3563e7bce7
commit 5db1613aae

View File

@@ -326,7 +326,8 @@ class xxxFrame(xxxContainer):
class xxxTool(xxxObject): class xxxTool(xxxObject):
allParams = ['bitmap', 'bitmap2', 'toggle', 'tooltip', 'longhelp'] allParams = ['bitmap', 'bitmap2', 'toggle', 'tooltip', 'longhelp']
paramDict = {'bitmap2': ParamFile} required = ['bitmap']
paramDict = {'bitmap2': ParamFile, 'toggle': ParamBool}
hasStyle = false hasStyle = false
class xxxToolBar(xxxContainer): class xxxToolBar(xxxContainer):