1
0
Fork 0

Codechange: Use template type for GUIList::Sort comparator

release/1.10
Jonathan G Rennison 2020-06-15 18:53:13 +01:00 committed by Charles Pigott
parent 7b05f8e741
commit dbb58fa5de
1 changed files with 2 additions and 1 deletions

View File

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