diff options
author | lado <herrlado@gmail.com> | 2011-11-11 23:00:54 +0100 |
---|---|---|
committer | lado <herrlado@gmail.com> | 2011-11-11 23:00:54 +0100 |
commit | 95f563b8be908a023b49d9e9415021b29a5311af (patch) | |
tree | 6e608351089b7b826fa966c3a226e47e96889360 | |
parent | 9ce19fcb7163c4d953908316bca93f2de08e2773 (diff) | |
download | vdr-manager-95f563b8be908a023b49d9e9415021b29a5311af.tar.gz vdr-manager-95f563b8be908a023b49d9e9415021b29a5311af.tar.bz2 |
sorting newest top
-rw-r--r-- | vdrmanager/src/de/bjusystems/vdrmanager/gui/TimerListActivity.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vdrmanager/src/de/bjusystems/vdrmanager/gui/TimerListActivity.java b/vdrmanager/src/de/bjusystems/vdrmanager/gui/TimerListActivity.java index 2029ed7..cc2c431 100644 --- a/vdrmanager/src/de/bjusystems/vdrmanager/gui/TimerListActivity.java +++ b/vdrmanager/src/de/bjusystems/vdrmanager/gui/TimerListActivity.java @@ -127,7 +127,7 @@ public class TimerListActivity extends BaseTimerEditActivity<Timer> implements protected boolean finishedSuccessImpl() { adapter.clear(); - sortItemsByTime(results, true); + sortItemsByTime(results); int day = -1; Calendar cal = Calendar.getInstance(); for (Event e : results) { |