summaryrefslogtreecommitdiff
path: root/xml/function.c
diff options
context:
space:
mode:
authorlordjaxom <lordjaxom>2005-01-02 20:04:09 +0000
committerlordjaxom <lordjaxom>2005-01-02 20:04:09 +0000
commite5fa5f7df0b1ba76845f9820e9aebedbeac0119b (patch)
tree50058b0c09a641980d53973b5bc1b7bc8e754c65 /xml/function.c
parenta7bed00a72af44f56887cf6963119cf88ce02ecd (diff)
downloadvdr-plugin-text2skin-e5fa5f7df0b1ba76845f9820e9aebedbeac0119b.tar.gz
vdr-plugin-text2skin-e5fa5f7df0b1ba76845f9820e9aebedbeac0119b.tar.bz2
- temporarily disabled trans function (let's see what happens)
Diffstat (limited to 'xml/function.c')
-rw-r--r--xml/function.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/xml/function.c b/xml/function.c
index 92b8926..5a11609 100644
--- a/xml/function.c
+++ b/xml/function.c
@@ -1,5 +1,5 @@
/*
- * $Id: function.c,v 1.4 2005/01/01 23:44:36 lordjaxom Exp $
+ * $Id: function.c,v 1.5 2005/01/02 20:04:09 lordjaxom Exp $
*/
#include "xml/function.h"
@@ -205,8 +205,9 @@ std::string cxFunction::Evaluate(void) const
return FunFile(mParams[0]->Evaluate());
case fun_trans:
- Dprintf("|%s| translates to |%s|\n", mParams[0]->Evaluate().c_str(), tr(mParams[0]->Evaluate().c_str()));
- return tr(mParams[0]->Evaluate().c_str());
+ //Dprintf("|%s| translates to |%s|\n", mParams[0]->Evaluate().c_str(), tr(mParams[0]->Evaluate().c_str()));
+ //return tr(mParams[0]->Evaluate().c_str());
+ return mParams[0]->Evaluate().c_str();
case fun_plugin:
return FunPlugin(mParams[0]->Evaluate());