summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--HISTORY4
-rw-r--r--displaymenu.h10
2 files changed, 13 insertions, 1 deletions
diff --git a/HISTORY b/HISTORY
index 35336a2a..19eccbac 100644
--- a/HISTORY
+++ b/HISTORY
@@ -1,7 +1,9 @@
VDR Plugin 'skinflatplus' Revision History
---------------------------------------
+2015-MM-DD: Version 0.5.2
+- [fix] eMenuSortMode in displaymenu.h for compile with VDR < 2.2.0
-2015-XX-XX: Version 0.5.1
+2015-02-14: Version 0.5.1
- [fix] topbar number recordings
- [fix] recording menu, total count size
- [fix] timer widget
diff --git a/displaymenu.h b/displaymenu.h
index 8ef1d4d0..711e530b 100644
--- a/displaymenu.h
+++ b/displaymenu.h
@@ -11,6 +11,16 @@
#include <iomanip>
using namespace std;
+#if APIVERSNUM < 20107
+ enum eMenuSortMode {
+ msmUnknown = 0,
+ msmNumber,
+ msmName,
+ msmTime,
+ msmProvider
+ };
+#endif
+
class cFlatDisplayMenu : public cFlatBaseRender, public cSkinDisplayMenu {
private:
cPixmap *menuPixmap;