diff options
author | Jasmin Jessich <jasmin@anw.at> | 2017-05-14 00:52:37 +0200 |
---|---|---|
committer | Jasmin Jessich <jasmin@anw.at> | 2017-05-14 00:52:37 +0200 |
commit | 1572944ecd70e2d3f716084a058218f3e90f241d (patch) | |
tree | a9e4d561674aec9f8d8530f25d3bc6d946921c21 /epgsearch.h | |
parent | 7d2a5fec1e0f7f2ec079a4b8477a26ded11a53fc (diff) | |
download | vdr-plugin-live-1572944ecd70e2d3f716084a058218f3e90f241d.tar.gz vdr-plugin-live-1572944ecd70e2d3f716084a058218f3e90f241d.tar.bz2 |
Added comments concerning TODOs
Diffstat (limited to 'epgsearch.h')
-rw-r--r-- | epgsearch.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/epgsearch.h b/epgsearch.h index 7545b39..61ae2eb 100644 --- a/epgsearch.h +++ b/epgsearch.h @@ -341,6 +341,10 @@ public: int TimerMode() const { return m_timerMode; } bool operator<( SearchResult const& other ) const { return m_starttime < other.m_starttime; } const cEvent* GetEvent(); + + /* JJJ: Should be done with a "Channels" argument to be sure the Lock order + * is correct; or find a better way to do this + */ #if VDRVERSNUM >= 20301 const cChannel* GetChannel() { LOCK_CHANNELS_READ; return Channels->GetByChannelID(m_channel); } #else |