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

This commit is contained in:
smatz 2008-05-27 19:58:32 +00:00
parent ee904e1df5
commit ee9a9503ce
1 changed files with 1 additions and 0 deletions

View File

@ -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();