]> git.saurik.com Git - wxWidgets.git/commitdiff
really fixed compilation for old imagehlp.h header
authorVadim Zeitlin <vadim@wxwidgets.org>
Tue, 15 Jul 2003 23:54:37 +0000 (23:54 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Tue, 15 Jul 2003 23:54:37 +0000 (23:54 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22011 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/crashrpt.cpp

index be47c4d4874401be1bfdb88ce43e263d0ef23868..10996846cd1da47d75423341007b78d85ca38480 100644 (file)
@@ -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;
 };
 
 // ----------------------------------------------------------------------------