From f83aa7771cc31b8de34beb4dc32709799f6d2281 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 15 Jul 2003 23:54:37 +0000 Subject: [PATCH] really fixed compilation for old imagehlp.h header git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22011 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/msw/crashrpt.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/msw/crashrpt.cpp b/src/msw/crashrpt.cpp index be47c4d487..10996846cd 100644 --- a/src/msw/crashrpt.cpp +++ b/src/msw/crashrpt.cpp @@ -226,9 +226,6 @@ private: void OutputGlobals(HANDLE hModuleCrash); - // the handle of the report file - HANDLE m_hFile; - // the current stack frame (may be NULL) STACKFRAME *m_sfCurrent; @@ -247,6 +244,9 @@ private: DECLARE_SYM_FUNCTION(SymEnumSymbols); DECLARE_SYM_FUNCTION(SymGetTypeInfo); #endif // wxUSE_DBGHELP + + // the handle of the report file + HANDLE m_hFile; }; // ----------------------------------------------------------------------------