Modify ↓
#2984 closed Bug (Fixed)
_GUICtrlListView_GetViewDetails and _GUICtrlListView_GetViewLarge returning wrong results
| Reported by: | water | Owned by: | |
|---|---|---|---|
| Milestone: | 3.3.14.2 | Component: | Standard UDFs |
| Version: | 3.3.12.0 | Severity: | None |
| Keywords: | Cc: |
Description
In 3.3.12.0 the script breaking changes tell us that
_GUICtrlListView_GetView() and _GUICtrlListView_SetView() were using 0 for detailed view and 1 for large icon view, when it's 0 for large icon view and 1 for detailed view.
_GUICtrlListView_GetViewDetails und _GUICtrlListView_GetViewLarge have not been changed accordingly.
Func _GUICtrlListView_GetViewDetails($hWnd) Return _GUICtrlListView_GetView($hWnd) = 0 EndFunc ;==>_GUICtrlListView_GetViewDetails
should be
Func _GUICtrlListView_GetViewDetails($hWnd) Return _GUICtrlListView_GetView($hWnd) = 1 EndFunc ;==>_GUICtrlListView_GetViewDetails
And
Func _GUICtrlListView_GetViewLarge($hWnd) Return _GUICtrlListView_GetView($hWnd) = 1 EndFunc ;==>_GUICtrlListView_GetViewLarge
should be
Func _GUICtrlListView_GetViewLarge($hWnd) Return _GUICtrlListView_GetView($hWnd) = 0 EndFunc ;==>_GUICtrlListView_GetViewLarge
Can anyone confirm that this is true?
Attachments (0)
Change History (3)
comment:1 by , 11 years ago
| Resolution: | → Fixed |
|---|---|
| Status: | new → closed |
comment:3 by , 9 years ago
| Milestone: | Future Release → 3.3.14.2 |
|---|
Note:
See TracTickets
for help on using tickets.

water,
I fixed that back in September with revisions 11065/66.
M23