diff --git a/src/gui/cec_setup.cpp b/src/gui/cec_setup.cpp index 3e8a7e2cf..7b7de137a 100644 --- a/src/gui/cec_setup.cpp +++ b/src/gui/cec_setup.cpp @@ -113,7 +113,7 @@ void CCECSetup::setCECSettings() videoDecoder->SetCECMode((VIDEO_HDMI_CEC_MODE)g_settings.hdmi_cec_mode); } -bool CCECSetup::changeNotify(const neutrino_locale_t OptionName) +bool CCECSetup::changeNotify(const neutrino_locale_t OptionName, void * /*data*/) { if (ARE_LOCALES_EQUAL(OptionName, LOCALE_VIDEOMENU_HDMI_CEC_MODE)) diff --git a/src/gui/cec_setup.h b/src/gui/cec_setup.h index 2c71d8908..9f69672f9 100644 --- a/src/gui/cec_setup.h +++ b/src/gui/cec_setup.h @@ -48,7 +48,7 @@ class CCECSetup : public CMenuTarget, CChangeObserver ~CCECSetup(); void setCECSettings(); int exec(CMenuTarget* parent, const std::string & actionKey); - virtual bool changeNotify(const neutrino_locale_t OptionName); + virtual bool changeNotify(const neutrino_locale_t OptionName, void * data); };