# HG changeset patch # User skidd13 # Date 1213636255 0 # Node ID 737129e510cbaf07d16fb3a55feaae00ddf5d272 # Parent fba2561f33f1efda24aa9a9cbbf0df754698c737 (svn r13535) -Codechange: Protect GUIList internals -Fix: VL_FIST_SORT should be set after list rebuild too diff -r fba2561f33f1 -r 737129e510cb src/sortlist_type.h --- a/src/sortlist_type.h Mon Jun 16 17:09:52 2008 +0000 +++ b/src/sortlist_type.h Mon Jun 16 17:10:55 2008 +0000 @@ -32,7 +32,7 @@ public: typedef int CDECL SortFunction(const T*, const T*); -public: // Temporary: public for conversion only +protected: SortFunction* const *func_list; ///< The sort criteria functions SortListFlags flags; ///< used to control sorting/resorting/etc. uint8 sort_type; ///< what criteria to sort on @@ -249,7 +249,7 @@ void RebuildDone() { CLRBITS(this->flags, VL_REBUILD); - SETBITS(this->flags, VL_RESORT); + SETBITS(this->flags, VL_RESORT | VL_FIRST_SORT); } };