[Wnd-commit] wnd/wnd/controls combobox.py,1.1.1.1,1.2
Status: Alpha
Brought to you by:
jurner
|
From: jürgen u. <cer...@us...> - 2005-05-15 09:22:39
|
Update of /cvsroot/wnd/wnd/wnd/controls In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30224 Modified Files: combobox.py Log Message: new message Index: combobox.py =================================================================== RCS file: /cvsroot/wnd/wnd/wnd/controls/combobox.py,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** combobox.py 29 Apr 2005 15:21:16 -0000 1.1.1.1 --- combobox.py 15 May 2005 09:22:22 -0000 1.2 *************** *** 98,102 **** self.onMSG(hwnd, "killfocus", 0, 0) return 0 ! #-------------------------------------------------------------------- --- 98,104 ---- self.onMSG(hwnd, "killfocus", 0, 0) return 0 ! elif msg==self.Msg.WM_DESTROY: ! self.onMSG(hwnd, "destroy", 0, 0) ! return 0 #-------------------------------------------------------------------- *************** *** 365,370 **** #elif 'dropdownlist' in styles: flag=True #if not flag: ! styles += 'subclass', 'nointegralheight' ! control.BaseControl.__init__(self, parent, "combobox", '', x, y, w, h, *styles) #self._base_pChildEnumProc= ENUMWINDOWSPROC(self._base_ChildEnumProc) --- 367,372 ---- #elif 'dropdownlist' in styles: flag=True #if not flag: ! styles += 'subclass', 'nointegralheight', ! control.BaseControl.__init__(self, parent, "combobox", '', x, y, w, h, *styles) #self._base_pChildEnumProc= ENUMWINDOWSPROC(self._base_ChildEnumProc) |