From 2b8df44d575e3554d1156c0cef9d9709779ad0f5 Mon Sep 17 00:00:00 2001 From: Guillermo Rodriguez Garcia Date: Fri, 2 Jun 2000 12:46:52 +0000 Subject: [PATCH] SIF_TRACKPOS didn't appear in mingw until 2.95.2, so I just #define it if it's missing. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_2_BRANCH@7519 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/msw/window.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/msw/window.cpp b/src/msw/window.cpp index 3daa43cce4..8f73bf6e8c 100644 --- a/src/msw/window.cpp +++ b/src/msw/window.cpp @@ -50,7 +50,7 @@ #include #endif -#if wxUSE_OWNER_DRAWN +#if wxUSE_OWNER_DRAWN #include "wx/ownerdrw.h" #endif @@ -98,6 +98,11 @@ #endif #endif +// This didn't appear in mingw until 2.95.2 +#ifndef SIF_TRACKPOS +#define SIF_TRACKPOS 16 +#endif + // --------------------------------------------------------------------------- // global variables // ---------------------------------------------------------------------------