summaryrefslogtreecommitdiff
path: root/config.c
diff options
context:
space:
mode:
authorlouis <louis.braun@gmx.de>2014-11-21 19:19:59 +0100
committerlouis <louis.braun@gmx.de>2014-11-21 19:19:59 +0100
commita34a824527f9ab911f20f0b42d6fdd311a19829a (patch)
tree9c029fc22d1a3f38a9b08504be6b9e0d7d6d32d6 /config.c
parente7abb8557eb8397172a360845b7ac5f7607ca158 (diff)
downloadvdr-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.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/config.c b/config.c
index 7052f50..71c9387 100644
--- a/config.c
+++ b/config.c
@@ -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();