EvdevInputSource: Add missing override
This commit is contained in:
parent
c096752791
commit
94ff7a3f13
|
@ -127,6 +127,11 @@ void EvdevInputSource::UpdateSettings(SettingsInterface& si, std::unique_lock<st
|
||||||
// noop
|
// noop
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool EvdevInputSource::ReloadDevices()
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
void EvdevInputSource::Shutdown()
|
void EvdevInputSource::Shutdown()
|
||||||
{
|
{
|
||||||
// noop
|
// noop
|
||||||
|
|
|
@ -15,6 +15,7 @@ public:
|
||||||
|
|
||||||
bool Initialize(SettingsInterface& si, std::unique_lock<std::mutex>& settings_lock) override;
|
bool Initialize(SettingsInterface& si, std::unique_lock<std::mutex>& settings_lock) override;
|
||||||
void UpdateSettings(SettingsInterface& si, std::unique_lock<std::mutex>& settings_lock) override;
|
void UpdateSettings(SettingsInterface& si, std::unique_lock<std::mutex>& settings_lock) override;
|
||||||
|
bool ReloadDevices() override;
|
||||||
void Shutdown() override;
|
void Shutdown() override;
|
||||||
|
|
||||||
void PollEvents() override;
|
void PollEvents() override;
|
||||||
|
|
Loading…
Reference in New Issue