summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/cfg_gfx/gdi_arci.cxx2
-rw-r--r--src/cfg_gfx/opengl_arci.cxx2
-rw-r--r--src/cfg_gfx/opengl_vertex.cxx1
-rw-r--r--src/cfg_gfx/quartz_arci.cxx2
-rw-r--r--src/cfg_gfx/xlib_arci.cxx2
5 files changed, 4 insertions, 5 deletions
diff --git a/src/cfg_gfx/gdi_arci.cxx b/src/cfg_gfx/gdi_arci.cxx
index d2cf5f5b3..5cba23851 100644
--- a/src/cfg_gfx/gdi_arci.cxx
+++ b/src/cfg_gfx/gdi_arci.cxx
@@ -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$".
diff --git a/src/cfg_gfx/opengl_arci.cxx b/src/cfg_gfx/opengl_arci.cxx
index 0f902b2bd..dcd47971a 100644
--- a/src/cfg_gfx/opengl_arci.cxx
+++ b/src/cfg_gfx/opengl_arci.cxx
@@ -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$".
diff --git a/src/cfg_gfx/opengl_vertex.cxx b/src/cfg_gfx/opengl_vertex.cxx
index cfc5df15b..46bc77fa8 100644
--- a/src/cfg_gfx/opengl_vertex.cxx
+++ b/src/cfg_gfx/opengl_vertex.cxx
@@ -28,7 +28,6 @@
#include "opengl.H"
#include <FL/fl_draw.H>
-#include <FL/x.h>
#include <FL/gl.h>
#include <FL/math.h>
diff --git a/src/cfg_gfx/quartz_arci.cxx b/src/cfg_gfx/quartz_arci.cxx
index eef84c70d..d3fd185a9 100644
--- a/src/cfg_gfx/quartz_arci.cxx
+++ b/src/cfg_gfx/quartz_arci.cxx
@@ -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$".
diff --git a/src/cfg_gfx/xlib_arci.cxx b/src/cfg_gfx/xlib_arci.cxx
index da1d58cf0..d928b17e0 100644
--- a/src/cfg_gfx/xlib_arci.cxx
+++ b/src/cfg_gfx/xlib_arci.cxx
@@ -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$".