﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
130	_GUICtrlListView_InsertGroup incorrect parameters order in the docs	MsCreatoR	Gary	"Description in the help file for '''_GUICtrlListView_InsertGroup''' function have small typo (incorrect order in the parameters).

It sais:

----

'''Parameters'''

''$hWnd''
Handle to the control

''$iIndex''
Index where the group is to be added. If this is -1, the group is added at the end of the list.

''$sHeader''
Header text

''$iGroupID''
ID of the group

''$iAlign''
Alignment of the header text for the group:
   0 - Left
   1 - Center
   2 - Right

----


But the $sHeader and $iGroupID needs to be switched, due to syntax descriptions (and the function's work of course):

{{{
_GUICtrlListView_InsertGroup($hWnd, $iIndex, $iGroupID, $sHeader[, $iAlign = 0])
}}}
"	Bug	closed	3.2.11.2	AutoIt	3.2.10.0		Fixed	ListView Group docs	
