summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Melcher <fltk@matthiasm.com>2016-01-23 21:09:00 +0000
committerMatthias Melcher <fltk@matthiasm.com>2016-01-23 21:09:00 +0000
commit031bc363a02b46274987ed00a742916ac80345a8 (patch)
tree3f4c070d193f2fe654306b4791a1c57efa65485a
parenta8cd1c92297d73eff13df285ca14346adbfdcf39 (diff)
More typos and oversights.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11038 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
-rw-r--r--src/cfg_gfx/xlib_arci.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cfg_gfx/xlib_arci.cxx b/src/cfg_gfx/xlib_arci.cxx
index d928b17e0..118e683a1 100644
--- a/src/cfg_gfx/xlib_arci.cxx
+++ b/src/cfg_gfx/xlib_arci.cxx
@@ -29,7 +29,7 @@ void Fl_Xlib_Graphics_Driver::arc(int x,int y,int w,int h,double a1,double a2) {
XDrawArc(fl_display, fl_window, fl_gc, x,y,w-1,h-1, int(a1*64),int((a2-a1)*64));
}
-void Fl_Graphics_Driver::pie(int x,int y,int w,int h,double a1,double a2) {
+void Fl_Xlib_Graphics_Driver::pie(int x,int y,int w,int h,double a1,double a2) {
if (w <= 0 || h <= 0) return;
XDrawArc(fl_display, fl_window, fl_gc, x,y,w-1,h-1, int(a1*64),int((a2-a1)*64));
XFillArc(fl_display, fl_window, fl_gc, x,y,w-1,h-1, int(a1*64),int((a2-a1)*64));