diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2012-10-07 11:13:18 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2012-10-07 11:13:18 +0200 |
commit | 9f832ef482346bdf1917df21e485f35098b9bebc (patch) | |
tree | f85ed07c1546c89d89688d298fdc38b680b0eeaf /themes.h | |
parent | 86fc7ba77cd70c453075ec7c4d7d40580388e964 (diff) | |
download | vdr-9f832ef482346bdf1917df21e485f35098b9bebc.tar.gz vdr-9f832ef482346bdf1917df21e485f35098b9bebc.tar.bz2 |
Fixed some compiler warnings under gcc version 4.7.1
Diffstat (limited to 'themes.h')
-rw-r--r-- | themes.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: themes.h 1.2 2007/08/05 14:10:22 kls Exp $ + * $Id: themes.h 2.1 2012/10/07 11:11:43 kls Exp $ */ #ifndef __THEMES_H @@ -56,7 +56,7 @@ public: }; // A helper macro that simplifies defining theme colors. -#define THEME_CLR(Theme, Subject, Color) static const int Subject = Theme.AddColor(#Subject, Color) +#define THEME_CLR(Theme, Subject, Color) static const tColor Subject = Theme.AddColor(#Subject, Color) class cThemes { private: |