summaryrefslogtreecommitdiff
path: root/config.c
diff options
context:
space:
mode:
Diffstat (limited to 'config.c')
-rw-r--r--config.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/config.c b/config.c
index 34b489d..4ef6964 100644
--- a/config.c
+++ b/config.c
@@ -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) == '/'))