[Wnd-commit] wnd/wnd/controls tab.py,1.1.1.1,1.2
Status: Alpha
Brought to you by:
jurner
|
From: jürgen u. <cer...@us...> - 2005-05-15 09:28:53
|
Update of /cvsroot/wnd/wnd/wnd/controls In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31580 Modified Files: tab.py Log Message: new message Index: tab.py =================================================================== RCS file: /cvsroot/wnd/wnd/wnd/controls/tab.py,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** tab.py 29 Apr 2005 15:21:26 -0000 1.1.1.1 --- tab.py 15 May 2005 09:28:29 -0000 1.2 *************** *** 78,82 **** self.onMSG(hwnd, "focuschange", 0, 0) return 0 ! #-------------------------------------------------------------------- --- 78,85 ---- self.onMSG(hwnd, "focuschange", 0, 0) return 0 ! ! elif msg==self.Msg.WM_DESTROY: ! self.onMSG(hwnd, "destroy", 0, 0) ! return 0 #-------------------------------------------------------------------- *************** *** 88,92 **** if n > szeof: text = '%s...\x00' % text[:szeof-3] else: text = '%s\x00' % text ! self._client_buffer.raw = text return addressof(self._client_buffer) #------------------------------------------------------------------------- --- 91,95 ---- if n > szeof: text = '%s...\x00' % text[:szeof-3] else: text = '%s\x00' % text ! self._client_buffer.raw = text + '\x00' return addressof(self._client_buffer) #------------------------------------------------------------------------- |