Modify

Opened 11 years ago

Closed 11 years ago

Last modified 9 years ago

#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 Melba23, 11 years ago

Resolution: Fixed
Status: newclosed

water,

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

M23

comment:2 by TicketCleanup, 11 years ago

Milestone: Future Release

Automatic ticket cleanup.

comment:3 by BrewManNH, 9 years ago

Milestone: Future Release3.3.14.2

Modify Ticket

Action
as closed The ticket will remain with no owner.

Add Comment


E-mail address and name can be saved in the Preferences .
 
Note: See TracTickets for help on using tickets.