diff options
author | lado <herrlado@gmail.com> | 2013-03-04 00:22:57 +0100 |
---|---|---|
committer | lado <herrlado@gmail.com> | 2013-03-04 00:22:57 +0100 |
commit | 8070b611c4549d7adc491219c394cd9e93834d0a (patch) | |
tree | b0d447e183469458dd8eedeb4e82d57ce680ff64 /vdr-vdrmanager | |
parent | 4c901ca579e1c9edc502100cb3c60a4710f18bf9 (diff) | |
download | vdr-manager-8070b611c4549d7adc491219c394cd9e93834d0a.tar.gz vdr-manager-8070b611c4549d7adc491219c394cd9e93834d0a.tar.bz2 |
audiotracks for an event
Diffstat (limited to 'vdr-vdrmanager')
-rw-r--r-- | vdr-vdrmanager/helpers.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/vdr-vdrmanager/helpers.cpp b/vdr-vdrmanager/helpers.cpp index 91af240..d547cc1 100644 --- a/vdr-vdrmanager/helpers.cpp +++ b/vdr-vdrmanager/helpers.cpp @@ -791,7 +791,9 @@ string cHelpers::ToText(const cEvent * event) { result += MapSpecialChars(event->ShortText() ? event->ShortText() : ""); result += ":"; result += MapSpecialChars(channel->GetChannelID().ToString()); - result += "\r\n"; + result += ":"; + result += GetAudioTracks(channel); + result += "\r\n"; if (eventTimer) { result += ToText(eventTimer); |