Skip to content

Commit

Permalink
Fixed clang errors
Browse files Browse the repository at this point in the history
  • Loading branch information
sadko4u committed May 7, 2024
1 parent 969d295 commit 196e892
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions include/lsp-plug.in/tk/widgets/simple/Label.h
Original file line number Diff line number Diff line change
Expand Up @@ -126,13 +126,13 @@ namespace lsp

public:
virtual void draw(ws::ISurface *s) override;
virtual status_t on_mouse_in(const ws::event_t *e) override;
virtual status_t on_mouse_out(const ws::event_t *e) override;
virtual status_t on_mouse_move(const ws::event_t *e) override;
virtual status_t on_mouse_down(const ws::event_t *e) override;
virtual status_t on_mouse_up(const ws::event_t *e) override;

public:
virtual status_t on_mouse_in(const ws::event_t *e);
virtual status_t on_mouse_out(const ws::event_t *e);
virtual status_t on_mouse_move(const ws::event_t *e);
virtual status_t on_mouse_down(const ws::event_t *e);
virtual status_t on_mouse_up(const ws::event_t *e);
virtual status_t on_before_popup(Menu *menu);
virtual status_t on_popup(Menu *menu);
virtual status_t on_submit();
Expand Down

0 comments on commit 196e892

Please sign in to comment.