From 81a4b7329c631ce337d8dee8b98ab602aa5f8525 Mon Sep 17 00:00:00 2001 From: ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> Date: Mon, 1 Mar 2021 11:20:03 +0100 Subject: Remove warnings about hidden virtual member functions. --- src/drivers/OpenGL/Fl_OpenGL_Graphics_Driver_arci.cxx | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/drivers/OpenGL/Fl_OpenGL_Graphics_Driver_arci.cxx') diff --git a/src/drivers/OpenGL/Fl_OpenGL_Graphics_Driver_arci.cxx b/src/drivers/OpenGL/Fl_OpenGL_Graphics_Driver_arci.cxx index ba5a7e7d7..f933d10e2 100644 --- a/src/drivers/OpenGL/Fl_OpenGL_Graphics_Driver_arci.cxx +++ b/src/drivers/OpenGL/Fl_OpenGL_Graphics_Driver_arci.cxx @@ -46,6 +46,10 @@ void Fl_OpenGL_Graphics_Driver::arc(int x,int y,int w,int h,double a1,double a2) glEnd(); } +void Fl_OpenGL_Graphics_Driver::arc(double x, double y, double r, double start, double end) { + Fl_Graphics_Driver::arc(x, y, r, start, end); +} + void Fl_OpenGL_Graphics_Driver::pie(int x,int y,int w,int h,double a1,double a2) { if (w <= 0 || h <= 0) return; while (a2