1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 05:37:35 +00:00

HackStudio: Remove unnecessary Locator::keydown_event()

This commit is contained in:
Andreas Kling 2019-10-28 18:54:59 +01:00
parent 990ca1a7a5
commit 272c59e6d8
2 changed files with 0 additions and 7 deletions

View file

@ -156,11 +156,6 @@ void Locator::close()
m_popup_window->hide(); m_popup_window->hide();
} }
void Locator::keydown_event(GKeyEvent& event)
{
GWidget::keydown_event(event);
}
void Locator::update_suggestions() void Locator::update_suggestions()
{ {
auto typed_text = m_textbox->text(); auto typed_text = m_textbox->text();

View file

@ -15,8 +15,6 @@ public:
void close(); void close();
private: private:
virtual void keydown_event(GKeyEvent&) override;
void update_suggestions(); void update_suggestions();
void open_suggestion(const GModelIndex&); void open_suggestion(const GModelIndex&);