This commit is contained in:
hyzboy 2020-01-19 19:22:24 +08:00
parent 01aede5cb5
commit 6344eecc07

View File

@ -79,8 +79,13 @@ namespace hgl
{
const int count=sl.GetCount();
T **str=sl.Items.GetData();
for(int i=0;i<count;i++)
Add(sl.Items[i]);
{
Add(**str);
++str;
}
return(count);
}