[Wnd-commit] wnd/wnd/controls button.py,1.1.1.1,1.2
Status: Alpha
Brought to you by:
jurner
|
From: jürgen u. <cer...@us...> - 2005-05-15 09:21:32
|
Update of /cvsroot/wnd/wnd/wnd/controls In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30085 Modified Files: button.py Log Message: new message Index: button.py =================================================================== RCS file: /cvsroot/wnd/wnd/wnd/controls/button.py,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** button.py 29 Apr 2005 15:21:05 -0000 1.1.1.1 --- button.py 15 May 2005 09:21:23 -0000 1.2 *************** *** 51,55 **** elif msg==self.Msg.WM_SETFOCUS: self.onMSG(hwnd, "setfocus", wp, lp) elif msg==self.Msg.WM_KILLFOCUS: self.onMSG(hwnd, "killfocus", wp, lp) ! #------------------------------------------------------------------------- --- 51,57 ---- elif msg==self.Msg.WM_SETFOCUS: self.onMSG(hwnd, "setfocus", wp, lp) elif msg==self.Msg.WM_KILLFOCUS: self.onMSG(hwnd, "killfocus", wp, lp) ! elif msg==self.Msg.WM_DESTROY: ! self.onMSG(hwnd, "destroy", 0, 0) ! return 0 #------------------------------------------------------------------------- |