Fixing typos for Linux

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11037 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Matthias Melcher 2016-01-23 21:06:45 +00:00
parent 474de78ac1
commit a8cd1c9229
5 changed files with 4 additions and 5 deletions

View File

@ -55,7 +55,7 @@ void Fl_GDI_Graphics_Driver::pie(int x,int y,int w,int h,double a1,double a2) {
} else Pie(fl_gc, x, y, x+w, y+h, xa, ya, xb, yb);
}
#endif FL_CFG_GFX_GDI_ARCI_CXX
#endif // FL_CFG_GFX_GDI_ARCI_CXX
//
// End of "$Id$".

View File

@ -61,7 +61,7 @@ void Fl_OpenGL_Graphics_Driver::pie(int x,int y,int w,int h,double a1,double a2)
glEnd();
}
#endif FL_CFG_GFX_OPENGL_ARCI_CXX
#endif // FL_CFG_GFX_OPENGL_ARCI_CXX
//
// End of "$Id$".

View File

@ -28,7 +28,6 @@
#include "opengl.H"
#include <FL/fl_draw.H>
#include <FL/x.h>
#include <FL/gl.h>
#include <FL/math.h>

View File

@ -66,7 +66,7 @@ void Fl_Quartz_Graphics_Driver::pie(int x,int y,int w,int h,double a1,double a2)
CGContextSetShouldAntialias(fl_gc, false);
}
#endif FL_CFG_GFX_QUARTZ_ARCI_CXX
#endif // FL_CFG_GFX_QUARTZ_ARCI_CXX
//
// End of "$Id$".

View File

@ -35,7 +35,7 @@ void Fl_Graphics_Driver::pie(int x,int y,int w,int h,double a1,double a2) {
XFillArc(fl_display, fl_window, fl_gc, x,y,w-1,h-1, int(a1*64),int((a2-a1)*64));
}
#endif FL_CFG_GFX_XLIB_ARCI_CXX
#endif // FL_CFG_GFX_XLIB_ARCI_CXX
//
// End of "$Id$".