diff options
author | Dimitar Petrovski <dimeptr@gmail.com> | 2013-02-22 09:52:10 +0100 |
---|---|---|
committer | Dimitar Petrovski <dimeptr@gmail.com> | 2013-02-22 09:52:10 +0100 |
commit | 60376c4c1f0a4b65cb07b89d5c095015ec3b1215 (patch) | |
tree | 17ffec6570452b26bb21436eabafdb24de5bf88b /epghandler.h | |
parent | c9a302eff85ad0d6c337743b7373b4ee0c7bded3 (diff) | |
download | vdr-plugin-eepg-60376c4c1f0a4b65cb07b89d5c095015ec3b1215.tar.gz vdr-plugin-eepg-60376c4c1f0a4b65cb07b89d5c095015ec3b1215.tar.bz2 |
Added ability to translate themes. Examples added
Fixed handling of duplicate epg entries
Added new SKY themes
Added checking/updating of themes files on load
Diffstat (limited to 'epghandler.h')
-rw-r--r-- | epghandler.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/epghandler.h b/epghandler.h index c0c5f0a..4a08fcf 100644 --- a/epghandler.h +++ b/epghandler.h @@ -41,6 +41,10 @@ public: private: std::string ExtractAttribute(const char* attr); void FindDuplicate(cEvent* Event, const char* newTitle); + /* + * Extract the date from duplicate event and remove it + */ + void RemoveEvent(cEvent* ev); private: std::string origShortText; @@ -50,7 +54,7 @@ private: cSchedule* schedule; static const int _LONG_EVENT_HOURS = 10; bool modified; - + bool searchDuplicates; }; #endif /*APIVERSNUM > 10725*/ |