summaryrefslogtreecommitdiff
path: root/FL/Enumerations.H
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>1998-10-21 14:21:44 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>1998-10-21 14:21:44 +0000
commit7657a2e4a536a9ee50a9277c2662dc49362ae341 (patch)
tree4374705cd67b2c5195cc2aa5986fc1591680852b /FL/Enumerations.H
parentd3dee719fbaaa0b64d15ad7397e549d2e4ee7d6f (diff)
Fixed all the frigging file headings - was missing a $ in the Id string.
Applied some damage bit fixes from Bill Spitzak. git-svn-id: file:///fltk/svn/fltk/trunk@28 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL/Enumerations.H')
-rw-r--r--FL/Enumerations.H17
1 files changed, 9 insertions, 8 deletions
diff --git a/FL/Enumerations.H b/FL/Enumerations.H
index 64153ee63..b55211df9 100644
--- a/FL/Enumerations.H
+++ b/FL/Enumerations.H
@@ -1,5 +1,5 @@
//
-// "$Id"
+// "$Id: Enumerations.H,v 1.5 1998/10/21 14:18:56 mike Exp $"
//
// Enumerations for the Fast Light Tool Kit (FLTK).
//
@@ -335,15 +335,16 @@ enum Fl_Mode { // visual types and Fl_Gl_Window::mode() (values match Glut)
// damage masks
-#define FL_DAMAGE_CHILD 0x01
-#define FL_DAMAGE_EXPOSE 0x02
-#define FL_DAMAGE_LINE 0x02
-#define FL_DAMAGE_SCROLL 0x04
-#define FL_DAMAGE_OVERLAY 0x0c
-#define FL_DAMAGE_ALL 0x80
+enum Fl_Damage {
+ FL_DAMAGE_CHILD = 0x01,
+ FL_DAMAGE_EXPOSE = 0x02,
+ FL_DAMAGE_SCROLL = 0x04,
+ FL_DAMAGE_OVERLAY = 0x08,
+ FL_DAMAGE_ALL = 0x80
+};
#endif
//
-// End of "$Id: Enumerations.H,v 1.4 1998/10/20 16:41:21 mike Exp $".
+// End of "$Id: Enumerations.H,v 1.5 1998/10/21 14:18:56 mike Exp $".
//