Fix for treeview

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



In TREEVIEW_UpdateDispInfo, a test is made to determine if the property
we want to change is handled by a callback. If so, the change is
dropped.
But that test was done incorrectly.

Now the treeview in the statistical page of eMule displays correctly.

Changelog:
  * Fix for TREEVIEW_UpdateDispInfo to test with the correct
callbackMask

-- 
Maxime Bellengà <maxime.bellenge@laposte.net>
Index: wine/dlls/comctl32/treeview.c
===================================================================
RCS file: /home/wine/wine/dlls/comctl32/treeview.c,v
retrieving revision 1.120
diff -u -r1.120 treeview.c
--- wine/dlls/comctl32/treeview.c	21 Jul 2003 22:04:42 -0000	1.120
+++ wine/dlls/comctl32/treeview.c	13 Aug 2003 12:54:49 -0000
@@ -683,7 +683,7 @@
     NMTVDISPINFOA callback;
     HWND hwnd = infoPtr->hwnd;
 
-    mask &= wineItem->callbackMask;
+    mask &= ~wineItem->callbackMask;
 
     if (mask == 0) return;
 

[Index of Archives]     [Gimp for Windows]     [Red Hat]     [Samba]     [Yosemite Camping]     [Graphics Cards]     [Wine Home]

  Powered by Linux