diff options
author | mrwastl <mrwastl@users.sourceforge.net> | 2011-06-13 19:56:01 +0200 |
---|---|---|
committer | mrwastl <mrwastl@users.sourceforge.net> | 2011-06-13 19:56:01 +0200 |
commit | 2a2f3c94192c6c960bb566f74a36ca89129c730a (patch) | |
tree | b6ac1b4b1530eb2fb6c2ad9641406700f090b757 | |
parent | c870c7dec6c2f54fb27240762b2a96ded5a5cffe (diff) | |
download | vdr-plugin-graphlcd-2a2f3c94192c6c960bb566f74a36ca89129c730a.tar.gz vdr-plugin-graphlcd-2a2f3c94192c6c960bb566f74a36ca89129c730a.tar.bz2 |
beauty patch (include i18n.h only when needed), change plugin id-string
-rw-r--r-- | plugin.c | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -18,16 +18,19 @@ #include "display.h" #include "global.h" -#include "i18n.h" #include "menu.h" #include <vdr/plugin.h> #include <ctype.h> +#if APIVERSNUM < 10503 +#include "i18n.h" +#endif + static const char * kPluginName = "graphlcd"; -static const char *VERSION = "0.2.0-git"; +static const char *VERSION = "0.2.0-touchcol-git"; static const char *DESCRIPTION = "Output to graphic LCD"; static const char *MAINMENUENTRY = NULL; |