summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2004-10-19 18:21:55 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2004-10-19 18:21:55 +0000
commita5a683f35f71f1e7ebe9a70660634cbf518b1dcd (patch)
tree2c40e5c4a342ce4cdf39e34253e5860521a1b1c8 /src
parente5355c3243a95049e582521e5c3c662a0bdaed72 (diff)
WIN32 compile fixes...
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@3875 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src')
-rw-r--r--src/Fl_win32.cxx25
1 files changed, 13 insertions, 12 deletions
diff --git a/src/Fl_win32.cxx b/src/Fl_win32.cxx
index 4e73eaf6d..5573a8848 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.50 2004/10/18 20:22:24 easysw Exp $"
+// "$Id: Fl_win32.cxx,v 1.33.2.37.2.51 2004/10/19 18:21:52 easysw Exp $"
//
// WIN32-specific code for the Fast Light Tool Kit (FLTK).
//
@@ -30,6 +30,7 @@
#include <FL/Fl.H>
#include <FL/x.H>
#include <FL/Fl_Window.H>
+#include <FL/Enumerations.H>
#include "flstring.h"
#include <stdio.h>
#include <stdlib.h>
@@ -737,34 +738,34 @@ static LRESULT CALLBACK WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lPar
Fl::e_length = 0;
switch (Fl::e_keysym) {
case FL_KP + '0' :
- Fl::e_keysym = Fl_Insert;
+ Fl::e_keysym = FL_Insert;
break;
case FL_KP + '1' :
- Fl::e_keysym = Fl_End;
+ Fl::e_keysym = FL_End;
break;
case FL_KP + '2' :
- Fl::e_keysym = Fl_Down;
+ Fl::e_keysym = FL_Down;
break;
case FL_KP + '3' :
- Fl::e_keysym = Fl_Page_Down;
+ Fl::e_keysym = FL_Page_Down;
break;
case FL_KP + '4' :
- Fl::e_keysym = Fl_Left;
+ Fl::e_keysym = FL_Left;
break;
case FL_KP + '6' :
- Fl::e_keysym = Fl_Right;
+ Fl::e_keysym = FL_Right;
break;
case FL_KP + '7' :
- Fl::e_keysym = Fl_Home;
+ Fl::e_keysym = FL_Home;
break;
case FL_KP + '8' :
- Fl::e_keysym = Fl_Up;
+ Fl::e_keysym = FL_Up;
break;
case FL_KP + '9' :
- Fl::e_keysym = Fl_Page_Up;
+ Fl::e_keysym = FL_Page_Up;
break;
case FL_KP + '.' :
- Fl::e_keysym = Fl_Delete;
+ Fl::e_keysym = FL_Delete;
break;
case FL_KP + '/' :
case FL_KP + '*' :
@@ -1241,5 +1242,5 @@ void Fl_Window::make_current() {
}
//
-// End of "$Id: Fl_win32.cxx,v 1.33.2.37.2.50 2004/10/18 20:22:24 easysw Exp $".
+// End of "$Id: Fl_win32.cxx,v 1.33.2.37.2.51 2004/10/19 18:21:52 easysw Exp $".
//