diff options
| author | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2024-07-24 17:08:52 +0200 |
|---|---|---|
| committer | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2024-07-24 17:09:30 +0200 |
| commit | 3cc12d203f30f29a8920b85ee98c46f4c9bb0bcb (patch) | |
| tree | e3545874eb334748bfa6e6c01314c73eca43d72c /FL | |
| parent | 467866b8299132138df10bbd91ec4f62639ca873 (diff) | |
Fix Fl_Scalable_Graphics_Driver::rect(x,y,w,h) (#1017)
Diffstat (limited to 'FL')
| -rw-r--r-- | FL/Fl_Graphics_Driver.H | 1 |
1 files changed, 1 insertions, 0 deletions
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); |
