*CtrlLib: ArrayCtrl fixed VirtualCount and multiselect issue

git-svn-id: svn://ultimatepp.org/upp/trunk@2331 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2010-04-22 19:30:46 +00:00
parent 90a112d3b4
commit bc284262f3

View file

@ -1346,7 +1346,7 @@ bool ArrayCtrl::IsLineEnabled(int i) const
void ArrayCtrl::Select(int i, int count, bool sel)
{
while(count--) {
array[i].select = sel;
array.At(i).select = sel;
RefreshRow(i++);
}
selectiondirty = true;