Fl_Preferences.H now doesn't include windows.h any more

(Windows only, STR #2173).


git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@6682 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Albrecht Schlosser 2009-03-14 10:23:05 +00:00
parent df19ff61b7
commit 039a9be3f5
3 changed files with 5 additions and 5 deletions

View File

@ -1,5 +1,7 @@
CHANGES IN FLTK 1.3.0
- Fl_Preferences.H now doesn't include windows.h any more
(Windows only, STR #2173).
- Fl_Window::draw() now doesn't reset its x/y-coordinates to 0
anymore before drawing itself and its children.
- All draw() methods of widgets are now protected (STR #2142).

View File

@ -31,11 +31,6 @@
#ifndef Fl_Preferences_H
# define Fl_Preferences_H
# ifdef WIN32
# include <windows.h>
# endif // WIN32
# include <stdio.h>
# include "Fl_Export.H"

View File

@ -51,6 +51,9 @@
# include <unistd.h>
#endif
#ifdef WIN32
#include <windows.h>
#endif // WIN32
char Fl_Preferences::nameBuffer[128];