diff options
| author | Matthias Melcher <github@matthiasm.com> | 2023-07-19 17:56:18 +0200 |
|---|---|---|
| committer | Matthias Melcher <github@matthiasm.com> | 2023-07-19 17:56:18 +0200 |
| commit | 35728ac9ecab78cc60ca89f9b5a6ad8f864bb8c4 (patch) | |
| tree | 6ee387fb38da463c05822b31ddbca4eb7a30a202 /fluid/Fl_Button_Type.h | |
| parent | f8a327877699a8565d36b2f0b1cbe074f224fba4 (diff) | |
FLUID: Fixes override attribute, cleanup
Diffstat (limited to 'fluid/Fl_Button_Type.h')
| -rw-r--r-- | fluid/Fl_Button_Type.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fluid/Fl_Button_Type.h b/fluid/Fl_Button_Type.h index f80a60beb..2013e1646 100644 --- a/fluid/Fl_Button_Type.h +++ b/fluid/Fl_Button_Type.h @@ -1,7 +1,7 @@ // -// Widget type header file for the Fast Light Tool Kit (FLTK). +// Button type header file for the Fast Light Tool Kit (FLTK). // -// Copyright 1998-2021 by Bill Spitzak and others. +// Copyright 1998-2023 by Bill Spitzak and others. // // This library is free software. Distribution and use rights are outlined in // the file "COPYING" which should have been included with this file. If this @@ -30,7 +30,7 @@ public: void ideal_size(int &w, int &h) FL_OVERRIDE; const char *type_name() FL_OVERRIDE { return "Fl_Button"; } const char *alt_type_name() FL_OVERRIDE { return "fltk::Button"; } - Fl_Widget *widget(int x, int y, int w, int h); + Fl_Widget *widget(int x, int y, int w, int h) FL_OVERRIDE; Fl_Widget_Type *_make() FL_OVERRIDE { return new Fl_Button_Type(); } int is_button() const FL_OVERRIDE { return 1; } ID id() const FL_OVERRIDE { return ID_Button; } |
