diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2006-02-05 13:55:58 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2006-02-05 13:55:58 +0100 |
commit | 7b97eb6e97d2156298bb06b0dfd13a12c68c525c (patch) | |
tree | 083314746cc5b635f0940e6da620af0620b10e28 /skinsttng.c | |
parent | 978462168c1326ffe60a434dee9e9ee642a62695 (diff) | |
download | vdr-7b97eb6e97d2156298bb06b0dfd13a12c68c525c.tar.gz vdr-7b97eb6e97d2156298bb06b0dfd13a12c68c525c.tar.bz2 |
Made all font and image data 'const'
Diffstat (limited to 'skinsttng.c')
-rw-r--r-- | skinsttng.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/skinsttng.c b/skinsttng.c index 1e2d8cdc..dccfb584 100644 --- a/skinsttng.c +++ b/skinsttng.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: skinsttng.c 1.16 2006/01/01 14:38:14 kls Exp $ + * $Id: skinsttng.c 1.17 2006/02/05 13:46:37 kls Exp $ */ // Star Trek: The Next Generation® is a registered trademark of Paramount Pictures @@ -721,7 +721,7 @@ void cSkinSTTNGDisplayReplay::SetTitle(const char *Title) osd->DrawText(x3 + 5, y0, Title, Theme.Color(clrReplayTitle), frameColor, cFont::GetFont(fontSml), x4 - x3 - 5); } -static char **ReplaySymbols[2][2][5] = { +static const char *const *ReplaySymbols[2][2][5] = { { { pause_xpm, srew_xpm, srew1_xpm, srew2_xpm, srew3_xpm }, { pause_xpm, sfwd_xpm, sfwd1_xpm, sfwd2_xpm, sfwd3_xpm }, }, { { play_xpm, frew_xpm, frew1_xpm, frew2_xpm, frew3_xpm }, |