1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-26 02:14:22 +00:00

Fix for ReferenceCountedArray::sort()

This commit is contained in:
Julian Storer 2010-01-27 20:39:45 +00:00
parent 35a4b5085f
commit 4b83b174c0

View file

@ -718,7 +718,7 @@ public:
// avoids getting warning messages about the parameter being unused
lock.enter();
sortArray (comparator, (ObjectClass*) data.elements, 0, size() - 1, retainOrderOfEquivalentItems);
sortArray (comparator, (ObjectClass**) data.elements, 0, size() - 1, retainOrderOfEquivalentItems);
lock.exit();
}