Commit 49080d3b authored by Alexandre Julliard's avatar Alexandre Julliard

Authors: Chris Morgan <cmorgan@wpi.edu>, James Abbatiello <abbeyj@wpi.edu>

Adds some undocumented behavior to TREEVIEW_GetItemA().
parent 1ab8907f
...@@ -1145,9 +1145,9 @@ TREEVIEW_GetItemA (HWND hwnd, WPARAM wParam, LPARAM lParam) ...@@ -1145,9 +1145,9 @@ TREEVIEW_GetItemA (HWND hwnd, WPARAM wParam, LPARAM lParam)
FIXME(" TVIF_INTEGRAL not supported yet\n"); FIXME(" TVIF_INTEGRAL not supported yet\n");
} }
if (tvItem->mask & TVIF_PARAM) { // undocumented: windows ignores TVIF_PARAM and
tvItem->lParam=wineItem->lParam; // always sets lParam
} tvItem->lParam=wineItem->lParam;
if (tvItem->mask & TVIF_SELECTEDIMAGE) { if (tvItem->mask & TVIF_SELECTEDIMAGE) {
tvItem->iSelectedImage=wineItem->iSelectedImage; tvItem->iSelectedImage=wineItem->iSelectedImage;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment