Codechange: Use template type for GUIList::Sort comparator
This commit is contained in:
committed by
Niels Martin Hansen
parent
d8182b7e15
commit
084b073e57
@@ -250,7 +250,8 @@ public:
|
||||
* @return true if the list sequence has been altered
|
||||
*
|
||||
*/
|
||||
bool Sort(SortFunction *compare)
|
||||
template <typename Comp>
|
||||
bool Sort(Comp compare)
|
||||
{
|
||||
/* Do not sort if the resort bit is not set */
|
||||
if (!(this->flags & VL_RESORT)) return false;
|
||||
|
||||
Reference in New Issue
Block a user