summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Melcher <fltk@matthiasm.com>2016-01-23 21:06:45 +0000
committerMatthias Melcher <fltk@matthiasm.com>2016-01-23 21:06:45 +0000
commita8cd1c92297d73eff13df285ca14346adbfdcf39 (patch)
tree31a960811073ea95fbdaea66263d96da0fdfa950
parent474de78ac17f4bcf205766ea0393059fbf2ace1e (diff)
Fixing typos for Linux
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11037 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
-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$".