summaryrefslogtreecommitdiff
path: root/themes.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2007-08-11 12:39:06 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2007-08-11 12:39:06 +0200
commit0f7a4af1683abfe892cb6d05536818a964d8cfe6 (patch)
tree13bb325aa8f5b390db1227c7875b0e406a43efec /themes.h
parent5b8fe34a0e8398a901eebe42c9385622d9bd7a22 (diff)
downloadvdr-0f7a4af1683abfe892cb6d05536818a964d8cfe6.tar.gz
vdr-0f7a4af1683abfe892cb6d05536818a964d8cfe6.tar.bz2
Switched I18N to gettext
Diffstat (limited to 'themes.h')
-rw-r--r--themes.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/themes.h b/themes.h
index 617f1d2e..56242936 100644
--- a/themes.h
+++ b/themes.h
@@ -4,13 +4,14 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: themes.h 1.1 2004/05/15 14:22:16 kls Exp $
+ * $Id: themes.h 1.2 2007/08/05 14:10:22 kls Exp $
*/
#ifndef __THEMES_H
#define __THEMES_H
#include "i18n.h"
+#include "tools.h"
#include "osd.h"
class cTheme {
@@ -18,7 +19,7 @@ public:
enum { MaxThemeColors = 128 };
private:
char *name;
- char *descriptions[I18nNumLanguages];
+ cStringList descriptions;
char *colorNames[MaxThemeColors];
tColor colorValues[MaxThemeColors];
bool FileNameOk(const char *FileName, bool SetName = false);