# HG changeset patch # User skidd13 # Date 1213636255 0 # Node ID 20a58e431c292d2c433dce3c2519ac798e040f03 # Parent 5281330a77dacbf1394123271c0a3133c551e0d7 (svn r13535) -Codechange: Protect GUIList internals -Fix: VL_FIST_SORT should be set after list rebuild too diff -r 5281330a77da -r 20a58e431c29 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); } };