aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2006-02-25 00:27:29 +0000
committerFelix Domke <tmbinc@elitedvb.net>2006-02-25 00:27:29 +0000
commit8ea443e11cc862e68ebc092f7c9def2a4b811771 (patch)
tree2ce9899d73025b5ebc44494271980fa1b4ecc9e6
parent95b51db3cdbe17f0ff80f8155155ae2fb5b8a11d (diff)
downloadenigma2-8ea443e11cc862e68ebc092f7c9def2a4b811771.tar.gz
enigma2-8ea443e11cc862e68ebc092f7c9def2a4b811771.zip
fix sort of cutlist
-rw-r--r--lib/gui/epositiongauge.h2
-rw-r--r--lib/service/servicedvb.h2
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)