From 474de78ac17f4bcf205766ea0393059fbf2ace1e Mon Sep 17 00:00:00 2001 From: Matthias Melcher Date: Sat, 23 Jan 2016 21:02:49 +0000 Subject: OpenGL arc and pie drawing (Mmmmh, pie!) git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11036 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- FL/Fl_Device.H | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'FL') diff --git a/FL/Fl_Device.H b/FL/Fl_Device.H index 1091e8e4d..8bf619ada 100644 --- a/FL/Fl_Device.H +++ b/FL/Fl_Device.H @@ -388,9 +388,9 @@ protected: virtual void arc(double x, double y, double r, double start, double end); // --- implementation is in src/fl_arci.cxx which includes src/cfg_gfx/xxx_arci.cxx friend void fl_arc(int x, int y, int w, int h, double a1, double a2); - virtual void arc(int x, int y, int w, int h, double a1, double a2); + virtual void arc(int x, int y, int w, int h, double a1, double a2) = 0; friend void fl_pie(int x, int y, int w, int h, double a1, double a2); - virtual void pie(int x, int y, int w, int h, double a1, double a2); + virtual void pie(int x, int y, int w, int h, double a1, double a2) = 0; }; -- cgit v1.2.3