summaryrefslogtreecommitdiff
path: root/setup.h
diff options
context:
space:
mode:
authorDieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de>2011-09-05 23:32:52 +0200
committerDieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de>2011-09-05 23:32:52 +0200
commitc627b7432d23db7ebe090e7a4027c0267c19434e (patch)
tree48d9b44ae1565928c05c67797c7c74c0906c79a1 /setup.h
parentc54f41fc59899a0f59b45bc500e99a080a12e2ac (diff)
downloadvdr-plugin-live-c627b7432d23db7ebe090e7a4027c0267c19434e.tar.gz
vdr-plugin-live-c627b7432d23db7ebe090e7a4027c0267c19434e.tar.bz2
Support for native recording length since VDR 1.7.21:
Applying a patch provided by ROFA: As the new vdr-1.7.21 provides native interface for recording lenght, there's no need to keep the "Show duration in 'Recordings'" setting anymore - less the options the better. If users want to speed up the recordings page, they must just upgrade to vdr-1.7.21+.
Diffstat (limited to 'setup.h')
-rw-r--r--setup.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/setup.h b/setup.h
index e6841d4..4d83762 100644
--- a/setup.h
+++ b/setup.h
@@ -55,7 +55,6 @@ class Setup
std::string const GetLastWhatsOnListMode() const { return m_lastwhatsonlistmode; }
std::string const GetLastSortingMode() const { return m_lastsortingmode; }
std::string const GetTntnetLogLevel() const { return m_tntnetloglevel; }
- bool GetShowRecDuration() const { return m_showRecDuration != 0; }
bool GetShowLogo() const { return m_showLogo != 0; }
bool GetUseAjax() const { return m_useAjax != 0; }
bool GetShowInfoBox() const { return m_showInfoBox != 0; }
@@ -80,7 +79,6 @@ class Setup
void SetIsLocalNet(bool islocalnet) { m_islocalnet = islocalnet; }
void SetLastWhatsOnListMode(std::string const & mode) { m_lastwhatsonlistmode = mode; SaveSetup(); }
void SetLastSortingMode(std::string const & mode) { m_lastsortingmode = mode; SaveSetup(); }
- void SetShowRecDuration(bool show) { m_showRecDuration = show ? 1 : 0; }
void SetShowLogo(bool show) { m_showLogo = show ? 1 : 0; }
void SetUseAjax(bool use) { m_useAjax = use ? 1 : 0; }
void SetShowInfoBox(bool show) { m_showInfoBox = show ? 1 : 0; }
@@ -136,7 +134,6 @@ class Setup
std::string m_lastwhatsonlistmode;
std::string m_lastsortingmode;
std::string m_tntnetloglevel;
- int m_showRecDuration;
int m_showLogo;
int m_useAjax;
int m_showInfoBox;