(svn r13286) -Codechange: GUIList Sort returns now if the list sequence has been altered

This commit is contained in:
skidd13
2008-05-27 10:27:30 +00:00
parent 49010369d2
commit 831343435c
2 changed files with 11 additions and 7 deletions

View File

@@ -197,7 +197,7 @@ protected:
/** Sort the stations list */
void SortStationsList()
{
this->stations.Sort();
if (!this->stations.Sort()) return;
/* Reset name sorter sort cache */
this->last_station = NULL;