diff options
author | lordjaxom <lordjaxom> | 2005-01-01 23:44:36 +0000 |
---|---|---|
committer | lordjaxom <lordjaxom> | 2005-01-01 23:44:36 +0000 |
commit | 4e0b98bf0cca1afa86b8c655c490392a70b56b36 (patch) | |
tree | 3bd0c33e090c67cbf948c9336317e4fdb175d9fa /loader.c | |
parent | 929d806fbc6c2d05317cd7357861d371a29c290f (diff) | |
download | vdr-plugin-text2skin-4e0b98bf0cca1afa86b8c655c490392a70b56b36.tar.gz vdr-plugin-text2skin-4e0b98bf0cca1afa86b8c655c490392a70b56b36.tar.bz2 |
- some formatting issues
- moved translation to skin object
Diffstat (limited to 'loader.c')
-rw-r--r-- | loader.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ /* - * $Id: loader.c,v 1.1 2004/12/19 22:03:14 lordjaxom Exp $ + * $Id: loader.c,v 1.2 2005/01/01 23:44:36 lordjaxom Exp $ */ #include "loader.h" @@ -50,7 +50,7 @@ void cText2SkinLoader::Load(const char *Skin) { if (access(skinfile.c_str(), F_OK) == 0) { isyslog("parsing %s", skinfile.c_str()); - cxSkin *skin = xmlParse(Skin, skinfile); + cxSkin *skin = xmlParse(Skin, skinfile, translations, theme); if (skin) { if (skin->Version() == cText2SkinPlugin::SkinVersion()) { new cText2SkinLoader(skin, translations, theme, Skin, skin->Title()); |