summaryrefslogtreecommitdiff
path: root/src/fl_vertex.cxx
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2004-08-26 18:24:11 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2004-08-26 18:24:11 +0000
commit157bf815062e52baef3efc27d8e5d80bbc0cd093 (patch)
tree03b832062d220d3655699b1cda1cba7aa4d8deaf /src/fl_vertex.cxx
parent329f84671efd278d548900d977f307057174e9c8 (diff)
Fix typo - had "#define XPOINT XPoint;", and had to remove the trailing
semicolon... git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@3786 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/fl_vertex.cxx')
-rw-r--r--src/fl_vertex.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/fl_vertex.cxx b/src/fl_vertex.cxx
index b6e831b59..4cac4a089 100644
--- a/src/fl_vertex.cxx
+++ b/src/fl_vertex.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: fl_vertex.cxx,v 1.5.2.3.2.10 2004/08/26 00:18:43 matthiaswm Exp $"
+// "$Id: fl_vertex.cxx,v 1.5.2.3.2.11 2004/08/26 18:24:11 easysw Exp $"
//
// Portable drawing routines for the Fast Light Tool Kit (FLTK).
//
@@ -78,14 +78,14 @@ void fl_rotate(double d) {
// typedef what the x,y fields in a point are:
#ifdef WIN32
typedef int COORD_T;
-#define XPOINT XPoint
+# define XPOINT XPoint
#elif defined(__APPLE_QUARTZ__)
typedef float COORD_T;
typedef struct { float x; float y; } QPoint;
-#define XPOINT QPoint
+# define XPOINT QPoint
#else
typedef short COORD_T;
-#define XPOINT XPoint;
+# define XPOINT XPoint
#endif
static XPOINT *p = (XPOINT *)0;
@@ -305,5 +305,5 @@ void fl_circle(double x, double y,double r) {
}
//
-// End of "$Id: fl_vertex.cxx,v 1.5.2.3.2.10 2004/08/26 00:18:43 matthiaswm Exp $".
+// End of "$Id: fl_vertex.cxx,v 1.5.2.3.2.11 2004/08/26 18:24:11 easysw Exp $".
//