Changeset 1468
- Timestamp:
- 07/07/08 19:17:48 (5 months ago)
- Files:
-
- 1 modified
-
trunk/peppy/lib/userparams.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/peppy/lib/userparams.py
r1465 r1468 120 120 class FileBrowseButton2(FileBrowseButton): 121 121 """Small enhancements to FileBrowseButton""" 122 def createDialog( self, parent, id, pos, size, style, name):122 def createDialog( self, parent, id, pos, size, style, *args, **kwargs): 123 123 """Setup the graphic representation of the dialog""" 124 wx.Panel.__init__ (self, parent, id, pos, size, style, name)124 wx.Panel.__init__ (self, parent, id, pos, size, style, *args, **kwargs) 125 125 self.SetMinSize(size) # play nice with sizers 126 126
