EvdevInputSource: Add missing override

This commit is contained in:
Connor McLaughlin 2022-10-31 18:09:26 +10:00
parent c096752791
commit 94ff7a3f13
2 changed files with 6 additions and 0 deletions

View File

@ -127,6 +127,11 @@ void EvdevInputSource::UpdateSettings(SettingsInterface& si, std::unique_lock<st
// noop
}
bool EvdevInputSource::ReloadDevices()
{
return false;
}
void EvdevInputSource::Shutdown()
{
// noop

View File

@ -15,6 +15,7 @@ public:
bool Initialize(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 PollEvents() override;