Use fnObjectEquals in ArrayList_Remove.

This commit is contained in:
Sébastien Duquette 2017-07-21 15:57:34 -04:00 committed by Marc-André Moreau
parent 8871d55589
commit 2497fcf941
1 changed files with 1 additions and 1 deletions

View File

@ -305,7 +305,7 @@ BOOL ArrayList_Remove(wArrayList *arrayList, void *obj)
for (index = 0; index < arrayList->size; index++)
{
if (arrayList->array[index] == obj)
if (arrayList->object.fnObjectEquals(arrayList->array[index], obj))
{
found = TRUE;
break;