Update of /cvsroot/pythoncard/PythonCard/components
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9019/components
Modified Files:
combobox.py
Log Message:
fixed rogue lines ending in just a carriage return
Index: combobox.py
===================================================================
RCS file: /cvsroot/pythoncard/PythonCard/components/combobox.py,v
retrieving revision 1.26
retrieving revision 1.27
diff -C2 -d -r1.26 -r1.27
*** combobox.py 4 May 2004 17:15:42 -0000 1.26
--- combobox.py 9 May 2004 23:58:08 -0000 1.27
***************
*** 98,102 ****
# Mac ComboBox is missing SetStringSelection
if wx.Platform == '__WXMAC__':
! def _setStringSelection(self, s):
self.SetSelection(self.FindString(s))
stringSelection = property(ContainerMixin._getStringSelection, _setStringSelection)
--- 98,103 ----
# Mac ComboBox is missing SetStringSelection
if wx.Platform == '__WXMAC__':
! def _setStringSelection(self, s):
! self.SetSelection(self.FindString(s))
stringSelection = property(ContainerMixin._getStringSelection, _setStringSelection)
|