diff options
author | Thomas Günther <tom@toms-cafe.de> | 2009-06-07 01:27:52 +0200 |
---|---|---|
committer | Thomas Günther <tom@toms-cafe.de> | 2009-06-07 01:27:52 +0200 |
commit | 4a07e775e56849879dc256d80187a7580279bac8 (patch) | |
tree | fe8786bae46a971352dd44f5a7ac4dfee631196b | |
parent | 40602f673a71a1e4c1c867e7bc01e4f21e8666ae (diff) | |
download | vdr-plugin-text2skin-4a07e775e56849879dc256d80187a7580279bac8.tar.gz vdr-plugin-text2skin-4a07e775e56849879dc256d80187a7580279bac8.tar.bz2 |
Corrected implementation of ReplayLanguageCode
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | status.c | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -69,6 +69,7 @@ ____-__-__: Version 1.3 - Corrected text in setup menu (timer-conflicts are now checked with epgsearch) - Removed unnecessary yes/no texts from cMenuEditBoolItem calls - Added translators info +- Corrected implementation of ReplayLanguageCode 2009-06-01: Version 1.2 @@ -358,7 +358,7 @@ cxType cText2SkinStatus::GetTokenData(const txToken &Token) const tComponent *c = components->Component(i); if (c->stream != 2) // only audio-streams index++; - { + if (i == index) { std::string buffer(c->language); if (c->type == 1) buffer.append("MONO"); |