summaryrefslogtreecommitdiff
path: root/src/Fl_Graphics_Driver.cxx
diff options
context:
space:
mode:
authorManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2024-07-23 10:13:27 +0200
committerManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2024-07-23 10:13:27 +0200
commit5e6c47f446c1eb4fce2fdb9ff2ce62b6eada3a39 (patch)
treea3e47c4cb76625151e0cdab334b7f2fd3c7cf0a3 /src/Fl_Graphics_Driver.cxx
parentdc95cd55c0513539c11ab1180219ab2cbcd802e1 (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.cxx5
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) {}