From 5db1613aae9ff6a8d9ed9b21c6bc6102010885e1 Mon Sep 17 00:00:00 2001 From: Roman Rolinsky Date: Thu, 30 Jan 2003 10:21:32 +0000 Subject: [PATCH] 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 --- wxPython/wxPython/tools/XRCed/xxx.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wxPython/wxPython/tools/XRCed/xxx.py b/wxPython/wxPython/tools/XRCed/xxx.py index 43eb9a5261..9cfa41c307 100644 --- a/wxPython/wxPython/tools/XRCed/xxx.py +++ b/wxPython/wxPython/tools/XRCed/xxx.py @@ -326,7 +326,8 @@ class xxxFrame(xxxContainer): class xxxTool(xxxObject): allParams = ['bitmap', 'bitmap2', 'toggle', 'tooltip', 'longhelp'] - paramDict = {'bitmap2': ParamFile} + required = ['bitmap'] + paramDict = {'bitmap2': ParamFile, 'toggle': ParamBool} hasStyle = false class xxxToolBar(xxxContainer):