diff options
Diffstat (limited to 'menuitems.h')
-rw-r--r-- | menuitems.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/menuitems.h b/menuitems.h index ef25d0d..4752d4b 100644 --- a/menuitems.h +++ b/menuitems.h @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: menuitems.h 1.2 2002/05/11 10:48:28 kls Exp $ + * $Id: menuitems.h 1.4 2002/08/15 11:28:26 kls Exp $ */ #ifndef __MENUITEMS_H @@ -12,10 +12,12 @@ #include "osd.h" +extern const char *FileNameChars; + class cMenuEditItem : public cOsdItem { private: - const char *name; - const char *value; + char *name; + char *value; public: cMenuEditItem(const char *Name); ~cMenuEditItem(); @@ -43,7 +45,7 @@ public: class cMenuEditChrItem : public cMenuEditItem { private: char *value; - const char *allowed; + char *allowed; const char *current; virtual void Set(void); public: @@ -56,7 +58,7 @@ class cMenuEditStrItem : public cMenuEditItem { private: char *value; int length; - const char *allowed; + char *allowed; int pos; bool insert, newchar, uppercase; void SetHelpKeys(void); |