diff options
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -87,7 +87,6 @@ bool cDesignerConfig::GetSkin(string &skin) { return true; } - void cDesignerConfig::SetChannelLogoSize(void) { cImageLoader imgLoader; imgLoader.DeterminateChannelLogoSize(logoWidth, logoHeight); @@ -168,6 +167,10 @@ bool cDesignerConfig::OsdFontsChanged(void) { return changed; } +cString cDesignerConfig::GetSkinRessourcePath(void) { + return cString::sprintf("%s%s", *skinPath, osdSkin.c_str()); +} + cString cDesignerConfig::CheckSlashAtEnd(std::string path) { try { if (!(path.at(path.size()-1) == '/')) |