summaryrefslogtreecommitdiff
path: root/menuitems.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2007-11-03 15:06:00 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2007-11-03 15:06:00 +0100
commit46b9d18368091d2c694608bd6903e23dd4288fbe (patch)
treeffa38073561a24ff274b0d5e03bf8a7123676116 /menuitems.h
parentb54da2e0eb3469a9d5632726273ca3f6dbde7a6e (diff)
downloadvdr-46b9d18368091d2c694608bd6903e23dd4288fbe.tar.gz
vdr-46b9d18368091d2c694608bd6903e23dd4288fbe.tar.bz2
The 'Allowed' parameter in cMenuEditStrItem() is now NULL by default, which results in using tr(FileNameChars)
Diffstat (limited to 'menuitems.h')
-rw-r--r--menuitems.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/menuitems.h b/menuitems.h
index 50778b16..21890a3d 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.21 2007/06/08 11:53:37 kls Exp $
+ * $Id: menuitems.h 1.22 2007/11/03 14:59:47 kls Exp $
*/
#ifndef __MENUITEMS_H
@@ -101,7 +101,7 @@ protected:
void LeaveEditMode(bool SaveValue = false);
bool InEditMode(void) { return valueUtf8 != NULL; }
public:
- cMenuEditStrItem(const char *Name, char *Value, int Length, const char *Allowed);
+ cMenuEditStrItem(const char *Name, char *Value, int Length, const char *Allowed = NULL);
~cMenuEditStrItem();
virtual eOSState ProcessKey(eKeys Key);
};