]> git.saurik.com Git - wxWidgets.git/commitdiff
moved wxWinHandleHash below wxWindow declaration as otherwise the dtor of forward...
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 22 Mar 2004 18:06:23 +0000 (18:06 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 22 Mar 2004 18:06:23 +0000 (18:06 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26295 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/msw/window.h

index 068b7a596bfaf9339251f7a0a8c2851e1f882869..ceac168c8138eb20cf81db70df9831d952ff989d 100644 (file)
 // a better solution should be found later...
 #define wxUSE_MOUSEEVENT_HACK 0
 
-#include "wx/hash.h"
-
-// pseudo-template HWND <-> wxWindow hash table
-WX_DECLARE_HASH(wxWindow, wxWindowList, wxWinHashTable);
-
-extern wxWinHashTable *wxWinHandleHash;
-
 // ---------------------------------------------------------------------------
 // constants
 // ---------------------------------------------------------------------------
@@ -501,5 +494,18 @@ public:
     ~wxWindowCreationHook();
 };
 
+// ----------------------------------------------------------------------------
+// global objects
+// ----------------------------------------------------------------------------
+
+// notice that this hash must be defined after wxWindow declaration as it
+// needs to "see" its dtor and not just forward declaration
+#include "wx/hash.h"
+
+// pseudo-template HWND <-> wxWindow hash table
+WX_DECLARE_HASH(wxWindow, wxWindowList, wxWinHashTable);
+
+extern wxWinHashTable *wxWinHandleHash;
+
 #endif
     // _WX_WINDOW_H_