diff options
-rw-r--r-- | list.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -17,7 +17,7 @@ * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * - * $Id: list.cpp 114 2008-03-16 22:20:33Z tom $ + * $Id: list.cpp 115 2008-03-19 00:38:58Z tom $ */ #include "list.h" @@ -28,6 +28,12 @@ #include <vdr/menuitems.h> #include <assert.h> +// Compatibility to older vdr versions +#if VDRVERSNUM < 10511 + #define cMenuEditStrItem(n, v, l) cMenuEditStrItem((n), (v), (l),\ + trVDR(FileNameChars)) +#endif + using namespace SudokuPlugin; |