From 583f6c5cb5aba1b8a79ec83532ee247396aded97 Mon Sep 17 00:00:00 2001 From: Julian Smart Date: Wed, 19 Jan 2000 10:34:43 +0000 Subject: [PATCH] Added missing windows.h includes git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5522 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/generic/helpext.cpp | 4 ++++ src/html/htmlwin.cpp | 4 +++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/generic/helpext.cpp b/src/generic/helpext.cpp index abac836452..838d373f04 100644 --- a/src/generic/helpext.cpp +++ b/src/generic/helpext.cpp @@ -40,6 +40,10 @@ #include #endif +#ifdef __WXMSW__ +#include +#endif + IMPLEMENT_CLASS(wxExtHelpController, wxHTMLHelpControllerBase) /** diff --git a/src/html/htmlwin.cpp b/src/html/htmlwin.cpp index af8f4639f9..ac2e1d135a 100644 --- a/src/html/htmlwin.cpp +++ b/src/html/htmlwin.cpp @@ -28,7 +28,9 @@ #include "wx/html/htmlwin.h" #include "wx/html/forcelnk.h" - +#ifdef __WXMSW__ +#include +#endif //----------------------------------------------------------------------------- // wxHtmlWindow -- 2.45.2