﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
1213	_GUICtrlListView_AddArray adds a second array incorrect to an existing listview	SilentButeo2@…	Jpm	"When using the _GUICtrlListView_AddArray function, the first array is added correctly. When a second array is added, the first column is added correctly, but the other colums overwrite the already added data.

code to reproduce:

{{{
	Dim $aTableData1[3][2] = [[10,11],[12,13],[14,15]]
	Dim $aTableData2[3][2] = [[20,21],[22,23],[24,25]]
	
	For $col=0 To UBound($aTableData1,2)-1
		_GUICtrlListView_AddColumn($List2, $aTableData1[0][$col])
		ConsoleWrite(""add coll""&@CRLF)
	Next
	
	_GUICtrlListView_AddArray($List2, $aTableData1)
	_GUICtrlListView_AddArray($List2, $aTableData2)
}}}

The output of this should be:

10 11
12 13
14 15
20 21
22 23
24 25

but you get:
10 21
12 23
14 25
20
22
24
"	Bug	closed	3.3.1.2	AutoIt	3.3.0.0	None	Fixed		
