From 3cc12d203f30f29a8920b85ee98c46f4c9bb0bcb Mon Sep 17 00:00:00 2001 From: ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> Date: Wed, 24 Jul 2024 17:08:52 +0200 Subject: Fix Fl_Scalable_Graphics_Driver::rect(x,y,w,h) (#1017) --- FL/Fl_Graphics_Driver.H | 1 + 1 file changed, 1 insertion(+) (limited to 'FL') diff --git a/FL/Fl_Graphics_Driver.H b/FL/Fl_Graphics_Driver.H index 3adf6d6c9..24246621c 100644 --- a/FL/Fl_Graphics_Driver.H +++ b/FL/Fl_Graphics_Driver.H @@ -426,6 +426,7 @@ protected: virtual void point_unscaled(float x, float y); void rect(int x, int y, int w, int h) FL_OVERRIDE; void rectf(int x, int y, int w, int h) FL_OVERRIDE; + virtual void rect_unscaled(int x, int y, int w, int h); virtual void rectf_unscaled(int x, int y, int w, int h); void line(int x, int y, int x1, int y1) FL_OVERRIDE; virtual void line_unscaled(int x, int y, int x1, int y1); -- cgit v1.2.3