From: Vadim Zeitlin Date: Fri, 1 Jun 2001 15:26:02 +0000 (+0000) Subject: compilation fix for old mingw32 X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/e80591b930c036485dbeb11358f0bce6330bc524?ds=inline compilation fix for old mingw32 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10403 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- 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 // ----------------------------------------------------------------------------