update_check: handle update check with localized timer settings

This commit is contained in:
2021-04-10 15:51:30 +02:00
parent f25831e90e
commit 1577847c11
9 changed files with 103 additions and 22 deletions

View File

@@ -55,20 +55,21 @@ class CUrlConfigSetupNotifier : public CChangeObserver
bool changeNotify(const neutrino_locale_t = NONEXISTANT_LOCALE, void *data = NULL);
};
class CUpdateSettings : public CMenuTarget
class CUpdateSettings : public CMenuTarget, CChangeObserver
{
private:
int width;
int initMenu();
#ifdef USE_SMS_INPUT
CStringInputSMS *input_url_file;
#endif
public:
CUpdateSettings();
~CUpdateSettings();
int exec(CMenuTarget* parent, const std::string & actionKey);
bool changeNotify(const neutrino_locale_t = NONEXISTANT_LOCALE, void *data = NULL);
};
#endif