summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2002-06-07 16:37:48 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2002-06-07 16:37:48 +0000
commitf50c05672699fbc034cc1869b4707ed16d238561 (patch)
treec4d439615605a94ca5250b3ca95c8037d946cb9e
parent861ad9769b94f52e3528817c8654c572d98ce760 (diff)
WIN32 compile fixes.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2287 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
-rwxr-xr-xsrc/Fl_get_key_win32.cxx6
-rw-r--r--src/Fl_win32.cxx6
-rw-r--r--src/fl_color_win32.cxx6
-rw-r--r--src/fl_dnd_win32.cxx6
4 files changed, 12 insertions, 12 deletions
diff --git a/src/Fl_get_key_win32.cxx b/src/Fl_get_key_win32.cxx
index 49c7ea80e..da5a037cd 100755
--- a/src/Fl_get_key_win32.cxx
+++ b/src/Fl_get_key_win32.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: Fl_get_key_win32.cxx,v 1.4.2.5.2.2 2002/01/01 15:11:31 easysw Exp $"
+// "$Id: Fl_get_key_win32.cxx,v 1.4.2.5.2.3 2002/06/07 16:37:48 easysw Exp $"
//
// WIN32 keyboard state routines for the Fast Light Tool Kit (FLTK).
//
@@ -28,7 +28,7 @@
// VK_x symbols.
#include <FL/Fl.H>
-#include <FL/win32.H>
+#include <FL/x.H>
// convert an Fltk (X) keysym to a MSWindows VK symbol:
// See also the inverse converter in Fl_win32.cxx
@@ -132,5 +132,5 @@ int Fl::get_key(int k) {
}
//
-// End of "$Id: Fl_get_key_win32.cxx,v 1.4.2.5.2.2 2002/01/01 15:11:31 easysw Exp $".
+// End of "$Id: Fl_get_key_win32.cxx,v 1.4.2.5.2.3 2002/06/07 16:37:48 easysw Exp $".
//
diff --git a/src/Fl_win32.cxx b/src/Fl_win32.cxx
index a91a0d812..0266b9e01 100644
--- a/src/Fl_win32.cxx
+++ b/src/Fl_win32.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: Fl_win32.cxx,v 1.33.2.37.2.35 2002/05/25 13:38:24 easysw Exp $"
+// "$Id: Fl_win32.cxx,v 1.33.2.37.2.36 2002/06/07 16:37:48 easysw Exp $"
//
// WIN32-specific code for the Fast Light Tool Kit (FLTK).
//
@@ -28,7 +28,7 @@
// for other system-specific code.
#include <FL/Fl.H>
-#include <FL/win32.H>
+#include <FL/x.H>
#include <FL/Fl_Window.H>
#include "flstring.h"
#include <stdio.h>
@@ -1175,5 +1175,5 @@ void Fl_Window::make_current() {
}
//
-// End of "$Id: Fl_win32.cxx,v 1.33.2.37.2.35 2002/05/25 13:38:24 easysw Exp $".
+// End of "$Id: Fl_win32.cxx,v 1.33.2.37.2.36 2002/06/07 16:37:48 easysw Exp $".
//
diff --git a/src/fl_color_win32.cxx b/src/fl_color_win32.cxx
index 5915cf807..1c2d328c7 100644
--- a/src/fl_color_win32.cxx
+++ b/src/fl_color_win32.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: fl_color_win32.cxx,v 1.14.2.3.2.4 2002/05/16 02:16:17 easysw Exp $"
+// "$Id: fl_color_win32.cxx,v 1.14.2.3.2.5 2002/06/07 16:37:48 easysw Exp $"
//
// WIN32 color functions for the Fast Light Tool Kit (FLTK).
//
@@ -34,7 +34,7 @@
#include <config.h>
#include <FL/Fl.H>
-#include <FL/win32.H>
+#include <FL/x.H>
#include <FL/fl_draw.H>
static unsigned fl_cmap[256] = {
@@ -222,5 +222,5 @@ fl_select_palette(void)
#endif
//
-// End of "$Id: fl_color_win32.cxx,v 1.14.2.3.2.4 2002/05/16 02:16:17 easysw Exp $".
+// End of "$Id: fl_color_win32.cxx,v 1.14.2.3.2.5 2002/06/07 16:37:48 easysw Exp $".
//
diff --git a/src/fl_dnd_win32.cxx b/src/fl_dnd_win32.cxx
index a2f55bcac..48d0231c1 100644
--- a/src/fl_dnd_win32.cxx
+++ b/src/fl_dnd_win32.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: fl_dnd_win32.cxx,v 1.5.2.10 2002/05/25 13:38:25 easysw Exp $"
+// "$Id: fl_dnd_win32.cxx,v 1.5.2.11 2002/06/07 16:37:48 easysw Exp $"
//
// Drag & Drop code for the Fast Light Tool Kit (FLTK).
//
@@ -27,7 +27,7 @@
// for other system-specific code.
#include <FL/Fl.H>
-#include <FL/win32.H>
+#include <FL/x.H>
#include <FL/Fl_Window.H>
#include "flstring.h"
#include <stdio.h>
@@ -349,5 +349,5 @@ int Fl::dnd()
//
-// End of "$Id: fl_dnd_win32.cxx,v 1.5.2.10 2002/05/25 13:38:25 easysw Exp $".
+// End of "$Id: fl_dnd_win32.cxx,v 1.5.2.11 2002/06/07 16:37:48 easysw Exp $".
//