summaryrefslogtreecommitdiff
path: root/FL
diff options
context:
space:
mode:
authorMatthias Melcher <fltk@matthiasm.com>2016-01-23 21:02:49 +0000
committerMatthias Melcher <fltk@matthiasm.com>2016-01-23 21:02:49 +0000
commit474de78ac17f4bcf205766ea0393059fbf2ace1e (patch)
tree2c87d1bb8f86ca2418459fdc8924f50ae8aeb8ae /FL
parentde12eddb59bea9ba529230d14cccf3dbef5518e4 (diff)
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
Diffstat (limited to 'FL')
-rw-r--r--FL/Fl_Device.H4
1 files changed, 2 insertions, 2 deletions
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;
};