diff options
author | lordjaxom <lordjaxom> | 2004-12-17 19:56:21 +0000 |
---|---|---|
committer | lordjaxom <lordjaxom> | 2004-12-17 19:56:21 +0000 |
commit | ac920774dee48c0a85b3c6fc8c6785c1a5dd8f6d (patch) | |
tree | d572f41490e8949a5e7323bf94b59c4034438afe /xml/function.c | |
parent | b8f29c674cc0ccca207123342c1344bbd0f13796 (diff) | |
download | vdr-plugin-text2skin-ac920774dee48c0a85b3c6fc8c6785c1a5dd8f6d.tar.gz vdr-plugin-text2skin-ac920774dee48c0a85b3c6fc8c6785c1a5dd8f6d.tar.bz2 |
1.0-pre5v1.0-pre5
Diffstat (limited to 'xml/function.c')
-rw-r--r-- | xml/function.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/xml/function.c b/xml/function.c index 597bece..66bae48 100644 --- a/xml/function.c +++ b/xml/function.c @@ -1,5 +1,5 @@ /* - * $Id: function.c,v 1.7 2004/12/14 13:13:10 lordjaxom Exp $ + * $Id: function.c,v 1.8 2004/12/17 19:56:16 lordjaxom Exp $ */ #include "xml/function.h" @@ -165,11 +165,9 @@ const std::string &cxFunction::FunFile(const std::string &Param) const std::string cxFunction::FunPlugin(const std::string &Param) const { - Dprintf("FunPlugin: Get(%s)\n", Param.c_str()); cPlugin *p = cPluginManager::GetPlugin(Param.c_str()); if (p) { const char *entry = p->MainMenuEntry(); - Dprintf("Entry: |%s|\n", entry); if (entry) return entry; } @@ -200,7 +198,6 @@ std::string cxFunction::Evaluate(void) const return False; case fun_eq: - Dprintf("eq: |%s| <-> |%s|\n", mParams[0]->Evaluate().c_str(), mParams[1]->Evaluate().c_str()); return mParams[0]->Evaluate() == mParams[1]->Evaluate() ? True : False; case fun_file: |