diff options
| author | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2021-12-09 08:09:44 +0100 |
|---|---|---|
| committer | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2021-12-09 08:09:51 +0100 |
| commit | 5a7a70b8958b726b92e76b4aedeba4a04b85085f (patch) | |
| tree | 3ba198a31312c7aacd39b693974fd49cfba25941 /FL/Fl_Image_Surface.H | |
| parent | 4f2febd801eadce214189f119090cbe0bb9c05b1 (diff) | |
Remove compiler warnings about unused parameters (issue #307)
Diffstat (limited to 'FL/Fl_Image_Surface.H')
| -rw-r--r-- | FL/Fl_Image_Surface.H | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FL/Fl_Image_Surface.H b/FL/Fl_Image_Surface.H index 68596e930..a22d1d97d 100644 --- a/FL/Fl_Image_Surface.H +++ b/FL/Fl_Image_Surface.H @@ -103,7 +103,7 @@ protected: int height; Fl_Offscreen offscreen; int external_offscreen; - Fl_Image_Surface_Driver(int w, int h, int high_res, Fl_Offscreen off) : Fl_Widget_Surface(NULL), width(w), height(h), offscreen(off) {external_offscreen = (off != 0);} + Fl_Image_Surface_Driver(int w, int h, int /*high_res*/, Fl_Offscreen off) : Fl_Widget_Surface(NULL), width(w), height(h), offscreen(off) {external_offscreen = (off != 0);} virtual ~Fl_Image_Surface_Driver() {} virtual void set_current() = 0; virtual void translate(int x, int y) = 0; |
