diff options
author | thankyouverycool <66646555+thankyouverycool@users.noreply.github.com> | 2022-12-25 15:41:33 -0500 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-12-26 09:27:19 +0100 |
commit | d938b9effed6f0343f75d5f7e2c1df702161446d (patch) | |
tree | 4ae5b958f356348a9906470cae5e7808983ddb53 /Userland/Applications/PixelPaint/LayerListWidget.h | |
parent | 5b02e6a46b8349babcb54c2363484232fbef0b30 (diff) | |
download | serenity-d938b9effed6f0343f75d5f7e2c1df702161446d.zip |
LibGUI+Applications: Rename automatic scrolling timer functions
Renames on_automatic_scrolling_timer_fired() =>
automatic_scrolling_timer_did_fire()
The 'on_' prefix is usually reserved for AK::Function hooks.
Renames set_automatic_scrolling_{active,timer}() =>
set_automatic_scrolling_timer_active()
For consistency, accuracy, and header file A E S T H E T I C S
Diffstat (limited to 'Userland/Applications/PixelPaint/LayerListWidget.h')
-rw-r--r-- | Userland/Applications/PixelPaint/LayerListWidget.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/PixelPaint/LayerListWidget.h b/Userland/Applications/PixelPaint/LayerListWidget.h index 9966dd3e4f..4a1ccdbf38 100644 --- a/Userland/Applications/PixelPaint/LayerListWidget.h +++ b/Userland/Applications/PixelPaint/LayerListWidget.h @@ -46,7 +46,7 @@ private: virtual void image_did_modify_layer_properties(size_t) override; virtual void image_did_modify_layer_bitmap(size_t) override; virtual void image_did_modify_layer_stack() override; - virtual void on_automatic_scrolling_timer_fired() override; + virtual void automatic_scrolling_timer_did_fire() override; void rebuild_gadgets(); void relayout_gadgets(); |