diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2023-01-01 18:02:46 +0100 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2023-01-01 18:02:46 +0100 |
| commit | 23e8d831a868774c014993d52eead0cbe105f218 (patch) | |
| tree | b198392598aff3675bac5936c96368c0c3297c56 /src | |
| parent | c8024c7a3b8faec3b65d222c50fb4cfccd3ab03e (diff) | |
Add a missing FL_OVERRIDE flag
Diffstat (limited to 'src')
| -rw-r--r-- | src/drivers/Xlib/Fl_Xlib_Graphics_Driver.H | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drivers/Xlib/Fl_Xlib_Graphics_Driver.H b/src/drivers/Xlib/Fl_Xlib_Graphics_Driver.H index 6142217d5..177f0b9b7 100644 --- a/src/drivers/Xlib/Fl_Xlib_Graphics_Driver.H +++ b/src/drivers/Xlib/Fl_Xlib_Graphics_Driver.H @@ -85,7 +85,7 @@ protected: static PangoFontMap *pfmap_; static PangoLayout *playout_; public: - virtual PangoFontDescription* pango_font_description() { return pfd_array[font()]; } + PangoFontDescription *pango_font_description() FL_OVERRIDE { return pfd_array[font()]; } private: static PangoFontDescription **pfd_array; // one array element for each Fl_Font static int pfd_array_length; |
