Skip to content

Commit 196e892

Browse files
committed
Fixed clang errors
1 parent 969d295 commit 196e892

File tree

1 file changed

+5
-5
lines changed
  • include/lsp-plug.in/tk/widgets/simple

1 file changed

+5
-5
lines changed

include/lsp-plug.in/tk/widgets/simple/Label.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -126,13 +126,13 @@ namespace lsp
126126

127127
public:
128128
virtual void draw(ws::ISurface *s) override;
129+
virtual status_t on_mouse_in(const ws::event_t *e) override;
130+
virtual status_t on_mouse_out(const ws::event_t *e) override;
131+
virtual status_t on_mouse_move(const ws::event_t *e) override;
132+
virtual status_t on_mouse_down(const ws::event_t *e) override;
133+
virtual status_t on_mouse_up(const ws::event_t *e) override;
129134

130135
public:
131-
virtual status_t on_mouse_in(const ws::event_t *e);
132-
virtual status_t on_mouse_out(const ws::event_t *e);
133-
virtual status_t on_mouse_move(const ws::event_t *e);
134-
virtual status_t on_mouse_down(const ws::event_t *e);
135-
virtual status_t on_mouse_up(const ws::event_t *e);
136136
virtual status_t on_before_popup(Menu *menu);
137137
virtual status_t on_popup(Menu *menu);
138138
virtual status_t on_submit();

0 commit comments

Comments
 (0)