(svn r13296) -Fix (r13276): VL_FIRST_SORT was never reset

replace/41b28d7194a279bdc17475d4fbe2ea6ec885a466
smatz 16 years ago
parent ee904e1df5
commit ee9a9503ce

@ -205,6 +205,7 @@ public:
const bool desc = HASBITS(this->flags, VL_DESC);
if (HASBITS(this->flags, VL_FIRST_SORT)) {
CLRBITS(this->flags, VL_FIRST_SORT);
qsort(this->data, this->items, sizeof(T), (int (CDECL *)(const void *, const void *))compare);
if (desc) this->Reverse();

Loading…
Cancel
Save