diff options
author | Rob Ryan <rob@affclicks.com> | 2022-04-03 15:51:40 +1000 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-04-03 12:21:50 +0200 |
commit | 0b5adfef8c2d0e6adfe011d9eb75687bab59c586 (patch) | |
tree | f4be861a86f155ff8c9828c39a5123d30c42ce7b /Userland/Applications/Calculator/CalculatorWidget.h | |
parent | 554709fec6d4e3dedc858b49b193d68df228c016 (diff) | |
download | serenity-0b5adfef8c2d0e6adfe011d9eb75687bab59c586.zip |
Calculator: Update mimic_pressed for refactor into the Button class
Diffstat (limited to 'Userland/Applications/Calculator/CalculatorWidget.h')
-rw-r--r-- | Userland/Applications/Calculator/CalculatorWidget.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Userland/Applications/Calculator/CalculatorWidget.h b/Userland/Applications/Calculator/CalculatorWidget.h index 0b5af96ea8..282be01193 100644 --- a/Userland/Applications/Calculator/CalculatorWidget.h +++ b/Userland/Applications/Calculator/CalculatorWidget.h @@ -31,7 +31,6 @@ private: void update_display(); virtual void keydown_event(GUI::KeyEvent&) override; - virtual void timer_event(Core::TimerEvent&) override; Calculator m_calculator; Keypad m_keypad; @@ -57,6 +56,4 @@ private: RefPtr<GUI::Button> m_inverse_button; RefPtr<GUI::Button> m_percent_button; RefPtr<GUI::Button> m_equals_button; - - RefPtr<GUI::Button> m_mimic_pressed_button {}; }; |