Modify

Opened 10 years ago

Closed 10 years ago

Last modified 8 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 Changed 10 years ago by Melba23

  • Resolution set to Fixed
  • Status changed from new to closed

water,

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

M23

comment:2 Changed 10 years ago by TicketCleanup

  • Milestone set to Future Release

Automatic ticket cleanup.

comment:3 Changed 8 years ago by BrewManNH

  • Milestone changed from Future Release to 3.3.14.2

Guidelines for posting comments:

  • You cannot re-open a ticket but you may still leave a comment if you have additional information to add.
  • In-depth discussions should take place on the forum.

For more information see the full version of the ticket guidelines here.

Add Comment

Modify Ticket

Action
as closed The ticket will remain with no owner.
Author


E-mail address and user name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.