Update of /cvsroot/wnd/wnd/wnd/controls/listview
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1740
Modified Files:
messagehandler.py
Log Message:
new message + bugfixes
Index: messagehandler.py
===================================================================
RCS file: /cvsroot/wnd/wnd/wnd/controls/listview/messagehandler.py,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** messagehandler.py 29 Apr 2005 15:23:14 -0000 1.1.1.1
--- messagehandler.py 15 May 2005 09:34:40 -0000 1.2
***************
*** 107,126 ****
return 0 # default
-
-
-
-
-
-
-
-
-
-
- def onMESSAGE2(self, hwnd, msg, wp, lp):
!
!
! # set LVS_SHAREIMAGELISTS as unchangable style
! if msg==self.Msg.WM_STYLECHANGING:
if wp==(1l<<32) - 16: # GWL_STYLE
LVS_SHAREIMAGELISTS = 64
--- 107,117 ----
return 0 # default
! elif msg==self.Msg.WM_DESTROY:
! self.onMSG(hwnd, "destroy", 0, 0)
! return 0
!
! elif msg==self.Msg.WM_STYLECHANGING:
! # set LVS_SHAREIMAGELISTS as unchangable style
if wp==(1l<<32) - 16: # GWL_STYLE
LVS_SHAREIMAGELISTS = 64
|