diff options
-rw-r--r-- | vdr-vdrmanager/helpers.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/vdr-vdrmanager/helpers.h b/vdr-vdrmanager/helpers.h index 3565e08..ad6d17b 100644 --- a/vdr-vdrmanager/helpers.h +++ b/vdr-vdrmanager/helpers.h @@ -45,7 +45,9 @@ private: static bool IsWantedEvent(cEvent * event, string pattern); static bool IsWantedChannel(cChannel * channel, string wantedChannels); static bool IsWantedTime(time_t when, cEvent * event); - static string MapSpecialChars(string text); + static string MapSpecialChars(const char * text); + static string MapSpecialChars(const cString text); + static string MapSpecialChars(const string text); static string ToText(const cEvent * event); static string ToText(cTimer * timer); static string ToText(cRecording * recording); |