diff options
author | Martin Prochnow <nordlicht@martins-kabuff.de> | 2006-12-04 11:35:54 +0100 |
---|---|---|
committer | Andreas Mair <andreas@vdr-developer.org> | 2006-12-04 11:35:54 +0100 |
commit | 01be0f47d4fcfce954f77a037f8ab4d5368c8fe7 (patch) | |
tree | c9ef3945e2f0303987e0770b6425efd5ebb4e5a4 /mymenusetup.h | |
parent | 978605b653893d76a6e34f923d74bb64dfb957ca (diff) | |
download | vdr-plugin-extrecmenu-01be0f47d4fcfce954f77a037f8ab4d5368c8fe7.tar.gz vdr-plugin-extrecmenu-01be0f47d4fcfce954f77a037f8ab4d5368c8fe7.tar.bz2 |
Version 0.12bv0.12b
- type of sorting (ascending/descending) selectable at the setup menu of the plugin
- 'Blue' also closes the info menu for a recording
Diffstat (limited to 'mymenusetup.h')
-rw-r--r-- | mymenusetup.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mymenusetup.h b/mymenusetup.h index 6763aee..e029b94 100644 --- a/mymenusetup.h +++ b/mymenusetup.h @@ -12,6 +12,7 @@ class mySetup int PatchNew; int ShowDvdNr; int ShowNewRecs; + int DescendSorting; }; extern mySetup mysetup; @@ -19,7 +20,7 @@ extern mySetup mysetup; class myMenuSetup:public cMenuSetupPage { private: - const char *sortrecordstext[4]; + const char *sortingtypetexts[2]; int showrecdate; int showrectime; int showreclength; @@ -28,6 +29,7 @@ class myMenuSetup:public cMenuSetupPage int patchnew; int showdvdnr; int shownewrecs; + int descendsorting; protected: virtual void Store(); public: |