From 2b053ae90ad75db8e181314e6fecddfcdfbdbee0 Mon Sep 17 00:00:00 2001 From: Dimitri Schoolwerth Date: Tue, 11 Oct 2005 15:01:50 +0000 Subject: [PATCH] fixed MSVC6 compilation error ("C2639: compiler generated default constructor required by unnamed class") git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35887 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/msw/window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/msw/window.cpp b/src/msw/window.cpp index 04f6f307a4..66fcdf4355 100644 --- a/src/msw/window.cpp +++ b/src/msw/window.cpp @@ -151,7 +151,7 @@ static bool gs_hasStdCmap = false; // last mouse event information we need to filter out the duplicates #if wxUSE_MOUSEEVENT_HACK -static struct +static struct MouseEventInfoDummy { // mouse position (in screen coordinates) wxPoint pos; -- 2.45.2