diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2006-02-25 00:27:29 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2006-02-25 00:27:29 +0000 |
| commit | 8ea443e11cc862e68ebc092f7c9def2a4b811771 (patch) | |
| tree | 2ce9899d73025b5ebc44494271980fa1b4ecc9e6 /lib/gui | |
| parent | 95b51db3cdbe17f0ff80f8155155ae2fb5b8a11d (diff) | |
| download | enigma2-8ea443e11cc862e68ebc092f7c9def2a4b811771.tar.gz enigma2-8ea443e11cc862e68ebc092f7c9def2a4b811771.zip | |
fix sort of cutlist
Diffstat (limited to 'lib/gui')
| -rw-r--r-- | lib/gui/epositiongauge.h | 2 |
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) |
