diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2013-11-03 14:10:59 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2013-11-03 14:10:59 +0100 |
commit | ff4aed2227476d53f90df7e7b61aa63f6de11f5d (patch) | |
tree | e8203b92a7410154779d57221fa8e421cd8ebd6a /menu.c | |
parent | 39f6b6fc6b93609c5ef5bcccdc3afd00ded7402d (diff) | |
download | vdr-ff4aed2227476d53f90df7e7b61aa63f6de11f5d.tar.gz vdr-ff4aed2227476d53f90df7e7b61aa63f6de11f5d.tar.bz2 |
The new menu category mcRecordingEdit is now used to mark menus that edit recording properties
Diffstat (limited to 'menu.c')
-rw-r--r-- | menu.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: menu.c 3.12 2013/11/03 13:27:17 kls Exp $ + * $Id: menu.c 3.13 2013/11/03 14:08:35 kls Exp $ */ #include "menu.h" @@ -2139,7 +2139,7 @@ public: cMenuPathEdit::cMenuPathEdit(const char *Path) :cOsdMenu(tr("Edit path"), 12) { - SetMenuCategory(mcRecording); + SetMenuCategory(mcRecordingEdit); path = Path; *folder = 0; *name = 0; @@ -2254,7 +2254,7 @@ public: cMenuRecordingEdit::cMenuRecordingEdit(cRecording *Recording) :cOsdMenu(tr("Edit recording"), 12) { - SetMenuCategory(mcRecording); + SetMenuCategory(mcRecordingEdit); recording = Recording; originalFileName = recording->FileName(); Recordings.StateChanged(recordingsState); // just to get the current state |