From 8ea443e11cc862e68ebc092f7c9def2a4b811771 Mon Sep 17 00:00:00 2001 From: Felix Domke Date: Sat, 25 Feb 2006 00:27:29 +0000 Subject: [PATCH] fix sort of cutlist --- lib/gui/epositiongauge.h | 2 +- lib/service/servicedvb.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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) -- 2.30.2