aboutsummaryrefslogtreecommitdiff
path: root/lib/gui
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 /lib/gui
parent95b51db3cdbe17f0ff80f8155155ae2fb5b8a11d (diff)
downloadenigma2-8ea443e11cc862e68ebc092f7c9def2a4b811771.tar.gz
enigma2-8ea443e11cc862e68ebc092f7c9def2a4b811771.zip
fix sort of cutlist
Diffstat (limited to 'lib/gui')
-rw-r--r--lib/gui/epositiongauge.h2
1 files changed, 1 insertions, 1 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)