diff options
author | Dimitar Petrovski <dimeptr@gmail.com> | 2012-11-21 13:21:49 +0100 |
---|---|---|
committer | Dimitar Petrovski <dimeptr@gmail.com> | 2012-11-21 13:21:49 +0100 |
commit | 0b2e0195683f8e21e1c666c6c1606cb31e3baaaf (patch) | |
tree | 945edd7d034e7d43c6d7c9aae145be0e855934c0 /epghandler.h | |
parent | c72251596c42864a959aedd7d916e834aac276e9 (diff) | |
download | vdr-plugin-eepg-0b2e0195683f8e21e1c666c6c1606cb31e3baaaf.tar.gz vdr-plugin-eepg-0b2e0195683f8e21e1c666c6c1606cb31e3baaaf.tar.bz2 |
Move duplicate events handling to separate method
Diffstat (limited to 'epghandler.h')
-rw-r--r-- | epghandler.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/epghandler.h b/epghandler.h index b37f7c2..c0c5f0a 100644 --- a/epghandler.h +++ b/epghandler.h @@ -40,12 +40,14 @@ public: // bool ParseEitEvent(cSchedule *Schedule, const SI::EIT::Event *EitEvent, uchar TableID, uchar Version); private: std::string ExtractAttribute(const char* attr); + void FindDuplicate(cEvent* Event, const char* newTitle); private: std::string origShortText; std::string origDescription; cEquivHandler* equivHandler; util::cCharsetFixer* charsetFixer; + cSchedule* schedule; static const int _LONG_EVENT_HOURS = 10; bool modified; |