[Bug 2036] New: CTreeCtrl : TREEVIEW_* kompatibility

Wine Bugs wine-bugs at winehq.org
Thu Feb 19 01:13:28 CST 2004


http://bugs.winehq.org/show_bug.cgi?id=2036

           Summary: CTreeCtrl : TREEVIEW_* kompatibility
           Product: Wine
           Version: 20040213
          Platform: Other
        OS/Version: other
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: wine-gui
        AssignedTo: wine-bugs at winehq.org
        ReportedBy: Johann.Obermayr at fastrun.at


Hi,

in TREEVIEW_Collapse & TREEVIEW_Expand
Line
    if (bUser || !(wineItem->state & TVIS_EXPANDEDONCE))
	TREEVIEW_SendExpand...
correct is
    if (bUser && !(wineItem->state & TVIS_EXPANDEDONCE))
	TREEVIEW_SendExpand...
because SendExpand notify only send if bUser ( bNotify) flag
is set.

-- 
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the wine-bugs mailing list