eventlist.cpp: sort titele by time

This commit is contained in:
satbaby
2012-04-26 13:42:55 +02:00
parent 117138612f
commit 2f3ff624f1

View File

@@ -78,7 +78,7 @@ bool sortById (const CChannelEvent& a, const CChannelEvent& b)
inline bool sortByDescription (const CChannelEvent& a, const CChannelEvent& b)
{
if(a.description == b.description)
return a.eventID < b.eventID;
return a.startTime < b.startTime;
else
return a.description < b.description ;
}