Merge branch 'dvbsi++' of coolstreamtech.de:cst-public-gui-neutrino into dvbsi++

Origin commit data
------------------
Commit: c01931382e
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2012-04-27 (Fri, 27 Apr 2012)
This commit is contained in:
[CST] Focus
2012-04-27 16:43:39 +04:00

View File

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