From e80591b930c036485dbeb11358f0bce6330bc524 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 1 Jun 2001 15:26:02 +0000 Subject: [PATCH] compilation fix for old mingw32 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10403 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/msw/textctrl.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/msw/textctrl.cpp b/src/msw/textctrl.cpp index ff6b6c1c97..eb624126c2 100644 --- a/src/msw/textctrl.cpp +++ b/src/msw/textctrl.cpp @@ -64,6 +64,11 @@ #include #endif +// old mingw32 doesn't define this +#ifndef CFM_CHARSET + #define CFM_CHARSET 0x08000000 +#endif // CFM_CHARSET + // ---------------------------------------------------------------------------- // private classes // ---------------------------------------------------------------------------- -- 2.50.0