From: Felix Domke Date: Sat, 25 Feb 2006 00:27:29 +0000 (+0000) Subject: fix sort of cutlist X-Git-Tag: 2.6.0~3995 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/8ea443e11cc862e68ebc092f7c9def2a4b811771 fix sort of cutlist --- diff --git a/lib/gui/epositiongauge.h b/lib/gui/epositiongauge.h index 0fa704c3..49ea3b3c 100644 --- a/lib/gui/epositiongauge.h +++ b/lib/gui/epositiongauge.h @@ -43,7 +43,7 @@ private: bool operator < (const struct cueEntry &o) const { - return what < o.what; + return where < o.where; } cueEntry(const pts_t &where, unsigned int what) : where(where), what(what) diff --git a/lib/service/servicedvb.h b/lib/service/servicedvb.h index 42e38013..5dbd47b7 100644 --- a/lib/service/servicedvb.h +++ b/lib/service/servicedvb.h @@ -172,7 +172,7 @@ private: bool operator < (const struct cueEntry &o) const { - return what < o.what; + return where < o.where; } cueEntry(const pts_t &where, unsigned int what) : where(where), what(what)