From c627b7432d23db7ebe090e7a4027c0267c19434e Mon Sep 17 00:00:00 2001 From: Dieter Hametner Date: Mon, 5 Sep 2011 23:32:52 +0200 Subject: 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+. --- setup.cpp | 3 --- 1 file changed, 3 deletions(-) (limited to 'setup.cpp') diff --git a/setup.cpp b/setup.cpp index 4b47520..bd72e92 100644 --- a/setup.cpp +++ b/setup.cpp @@ -42,7 +42,6 @@ Setup::Setup(): m_lastwhatsonlistmode("detail"), m_lastsortingmode("nameasc"), m_tntnetloglevel("WARN"), - m_showRecDuration(0), m_showLogo(1), m_useAjax(1), m_showInfoBox(1), @@ -131,7 +130,6 @@ bool Setup::ParseSetupEntry( char const* name, char const* value ) else if ( strcmp( name, "LocalNetMask" ) == 0 ) { m_localnetmask = value; } else if ( strcmp( name, "LastWhatsOnListMode" ) == 0 ) { m_lastwhatsonlistmode = value; } else if ( strcmp( name, "LastSortingMode" ) == 0 ) { m_lastsortingmode = value; } - else if ( strcmp( name, "ShowRecDuration" ) == 0 ) { m_showRecDuration = atoi(value); } else if ( strcmp( name, "ShowLogo" ) == 0 ) { m_showLogo = atoi(value); } else if ( strcmp( name, "UseAjax" ) == 0 ) { m_useAjax = atoi(value); } else if ( strcmp( name, "ShowInfoBox" ) == 0 ) { m_showInfoBox = atoi(value); } @@ -316,7 +314,6 @@ bool Setup::SaveSetup() liveplugin->SetupStore("Theme", m_theme.c_str()); liveplugin->SetupStore("LastWhatsOnListMode", m_lastwhatsonlistmode.c_str()); liveplugin->SetupStore("LastSortingMode", m_lastsortingmode.c_str()); - liveplugin->SetupStore("ShowRecDuration", m_showRecDuration); liveplugin->SetupStore("ShowLogo", m_showLogo); liveplugin->SetupStore("UseAjax", m_useAjax); liveplugin->SetupStore("ShowInfoBox", m_showInfoBox); -- cgit v1.2.3