From 1d97f94e56a4ba5e05241c4fd01902cc4a4347bd Mon Sep 17 00:00:00 2001 From: Albrecht Schlosser Date: Wed, 31 Jan 2018 22:34:48 +0000 Subject: [PATCH] Fix broken Windows and macOS builds. The check whether mac.H or win32.H were included directly was wrong after the recent rename of x.H to platform.H. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.4@12642 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- FL/mac.H | 4 ++-- FL/win32.H | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/FL/mac.H b/FL/mac.H index d1e49096b..7db23387b 100644 --- a/FL/mac.H +++ b/FL/mac.H @@ -21,9 +21,9 @@ // portability of even the system-specific code... #ifndef FL_DOXYGEN -#if !defined(Fl_X_H) +#if !defined(FL_PLATFORM_H) # error "Never use directly; include instead." -#endif // !Fl_X_H +#endif // !FL_PLATFORM_H #ifdef __OBJC__ @class FLWindow; // a subclass of the NSWindow Cocoa class diff --git a/FL/win32.H b/FL/win32.H index 45ca5e3dd..0d8253d40 100644 --- a/FL/win32.H +++ b/FL/win32.H @@ -21,9 +21,9 @@ // portability of even the system-specific code... #ifndef FL_DOXYGEN -#ifndef Fl_X_H +#ifndef FL_PLATFORM_H # error "Never use directly; include instead." -#endif // !Fl_X_H +#endif // !FL_PLATFORM_H #include typedef HWND Window;