diff options
author | lordjaxom <lordjaxom> | 2004-12-21 18:35:54 +0000 |
---|---|---|
committer | lordjaxom <lordjaxom> | 2004-12-21 18:35:54 +0000 |
commit | c05277882c111760d4e275b8521bb057e913a946 (patch) | |
tree | 4eafb4a11134d83b3a5f0d6658fa3df9f924d26f /xml/function.c | |
parent | de783ac67265a5a11ebbad52e8dbc81292b4ac66 (diff) | |
download | vdr-plugin-text2skin-c05277882c111760d4e275b8521bb057e913a946.tar.gz vdr-plugin-text2skin-c05277882c111760d4e275b8521bb057e913a946.tar.bz2 |
- dunno
Diffstat (limited to 'xml/function.c')
-rw-r--r-- | xml/function.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xml/function.c b/xml/function.c index ca06922..04a3f2f 100644 --- a/xml/function.c +++ b/xml/function.c @@ -1,5 +1,5 @@ /* - * $Id: function.c,v 1.1 2004/12/19 22:03:26 lordjaxom Exp $ + * $Id: function.c,v 1.2 2004/12/21 18:35:54 lordjaxom Exp $ */ #include "xml/function.h" @@ -204,6 +204,7 @@ 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()); case fun_plugin: |