diff options
author | louis <louis.braun@gmx.de> | 2014-11-21 19:19:59 +0100 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2014-11-21 19:19:59 +0100 |
commit | a34a824527f9ab911f20f0b42d6fdd311a19829a (patch) | |
tree | 9c029fc22d1a3f38a9b08504be6b9e0d7d6d32d6 /config.c | |
parent | e7abb8557eb8397172a360845b7ac5f7607ca158 (diff) | |
download | vdr-plugin-skindesigner-a34a824527f9ab911f20f0b42d6fdd311a19829a.tar.gz vdr-plugin-skindesigner-a34a824527f9ab911f20f0b42d6fdd311a19829a.tar.bz2 |
changed handling of channel logos, width and height are now mandatory
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 9 |
1 files changed, 0 insertions, 9 deletions
@@ -11,9 +11,6 @@ cDesignerConfig::cDesignerConfig() { limitLogoCache = 1; numLogosMax = 200; debugImageLoading = 0; - //default logo width and height - logoWidth = 268; - logoHeight = 200; replaceDecPoint = false; //settings for rerun display rerunAmount = 10; @@ -86,12 +83,6 @@ bool cDesignerConfig::GetSkin(string &skin) { return true; } -void cDesignerConfig::SetChannelLogoSize(void) { - cImageLoader imgLoader; - imgLoader.DeterminateChannelLogoSize(logoWidth, logoHeight); - dsyslog("skindesigner: using %dx%d px as original channel logo size", logoWidth, logoHeight); -} - void cDesignerConfig::CheckDecimalPoint(void) { struct lconv *pLocInfo; pLocInfo = localeconv(); |