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@winehq.org ReportedBy: Johann.Obermayr@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.