neutrino: remove unnecessary casts from epgplus code

git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-experimental@233 e54a6e83-5905-42d5-8d5c-058d10e6a962


Origin commit data
------------------
Branch: ni/coolstream
Commit: 8178743079
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2010-01-31 (Sun, 31 Jan 2010)



------------------
This commit was generated by Migit
This commit is contained in:
Stefan Seyfried
2010-01-31 11:30:13 +00:00
parent 7927f7cfc3
commit 3d55f05e85
2 changed files with 10 additions and 10 deletions

View File

@@ -69,15 +69,15 @@ int EpgPlus::sliderWidth = 0;
int EpgPlus::channelsTableWidth = 0;
static EpgPlus::FontSetting fontSettingTable[] = {
{EpgPlus::EPGPlus_header_font, (char *) "Bold", 20},
{EpgPlus::EPGPlus_timeline_fonttime, (char *) "Bold", 16},
{EpgPlus::EPGPlus_timeline_fontdate, (char *) "Bold", 14},
{EpgPlus::EPGPlus_channelentry_font, (char *) "Bold", 16},
{EpgPlus::EPGPlus_channelevententry_font, (char *) "Regular", 16},
{EpgPlus::EPGPlus_footer_fontbouquetchannelname, (char *) "Bold", 24},
{EpgPlus::EPGPlus_footer_fonteventdescription, (char *) "Regular", 16},
{EpgPlus::EPGPlus_footer_fonteventshortdescription, (char *) "Regular", 16},
{EpgPlus::EPGPlus_footer_fontbuttons, (char *) "Regular", 16},
{ EpgPlus::EPGPlus_header_font, "Bold", 20 },
{ EpgPlus::EPGPlus_timeline_fonttime, "Bold", 16 },
{ EpgPlus::EPGPlus_timeline_fontdate, "Bold", 14 },
{ EpgPlus::EPGPlus_channelentry_font, "Bold", 16 },
{ EpgPlus::EPGPlus_channelevententry_font, "Regular", 16 },
{ EpgPlus::EPGPlus_footer_fontbouquetchannelname, "Bold", 24 },
{ EpgPlus::EPGPlus_footer_fonteventdescription, "Regular", 16 },
{ EpgPlus::EPGPlus_footer_fonteventshortdescription, "Regular", 16 },
{ EpgPlus::EPGPlus_footer_fontbuttons, "Regular", 16 },
};
static EpgPlus::SizeSetting sizeSettingTable[] = {

View File

@@ -84,7 +84,7 @@ public:
struct FontSetting
{
FontSettingID settingID;
char* style;
const char* style;
int size;
};