diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2024-03-19 14:29:48 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-03-20 08:18:03 +0100 |
commit | f3c46930b43707e57979f08c85d53974f688380d (patch) | |
tree | 0b0e363ffe91ba50b3381011fddad7aceacbc497 /editor/tests/region-test.cpp | |
parent | 9629cfc4a97241a01654518dd7b8b2636e415866 (diff) |
pass dt to tests
Diffstat (limited to 'editor/tests/region-test.cpp')
-rw-r--r-- | editor/tests/region-test.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editor/tests/region-test.cpp b/editor/tests/region-test.cpp index e24447c4..ca8addf3 100644 --- a/editor/tests/region-test.cpp +++ b/editor/tests/region-test.cpp @@ -52,8 +52,8 @@ struct region_test final : base_test bool handle_mouse_move(app&, const mouse_move_event&) override { return {}; } void draw_overlay(app& a) override; void draw_ui(app&, float) override; - void update_pre(app&) override {} - void update_post(app& a) override; + void update_pre(app&, const Ns&) override {} + void update_post(app& a, const Ns&) override; }; void region_test::draw_overlay(app& a) @@ -139,7 +139,7 @@ bool region_test::handle_mouse_click(app& a, const mouse_button_event& e, bool i return false; } -void region_test::update_post(app& a) +void region_test::update_post(app& a, const Ns&) { if (pending.exists) { |