diff options
| author | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2024-07-23 10:13:27 +0200 |
|---|---|---|
| committer | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2024-07-23 10:13:27 +0200 |
| commit | 5e6c47f446c1eb4fce2fdb9ff2ce62b6eada3a39 (patch) | |
| tree | a3e47c4cb76625151e0cdab334b7f2fd3c7cf0a3 /src/Fl_Graphics_Driver.cxx | |
| parent | dc95cd55c0513539c11ab1180219ab2cbcd802e1 (diff) | |
Fix "line_style_doc program under X11: join type wrong" (#1017)
Diffstat (limited to 'src/Fl_Graphics_Driver.cxx')
| -rw-r--r-- | src/Fl_Graphics_Driver.cxx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/Fl_Graphics_Driver.cxx b/src/Fl_Graphics_Driver.cxx index 6142c8672..6f54b32ca 100644 --- a/src/Fl_Graphics_Driver.cxx +++ b/src/Fl_Graphics_Driver.cxx @@ -1078,10 +1078,7 @@ void Fl_Scalable_Graphics_Driver::rectf_unscaled(int x, int y, int w, int h) {} void Fl_Scalable_Graphics_Driver::line_unscaled(int x, int y, int x1, int y1) {} -void Fl_Scalable_Graphics_Driver::line_unscaled(int x, int y, int x1, int y1, int x2, int y2) { - line_unscaled(x, y, x1, y1); - line_unscaled(x1, y1, x2, y2); -} +void Fl_Scalable_Graphics_Driver::line_unscaled(int x, int y, int x1, int y1, int x2, int y2) {} void Fl_Scalable_Graphics_Driver::xyline_unscaled(int x, int y, int x1) {} |
