wxUniversal compilation fix.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27297 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Mattia Barbon
2004-05-15 16:56:16 +00:00
parent d13ea1bd96
commit 54d73f3d78

View File

@@ -502,7 +502,11 @@ public:
#include "wx/hash.h" #include "wx/hash.h"
// pseudo-template HWND <-> wxWindow hash table // pseudo-template HWND <-> wxWindow hash table
#if WXWIN_COMPATIBILITY_2_4
WX_DECLARE_HASH(wxWindow, wxWindowList, wxWinHashTable);
#else
WX_DECLARE_HASH(wxWindowMSW, wxWindowList, wxWinHashTable); WX_DECLARE_HASH(wxWindowMSW, wxWindowList, wxWinHashTable);
#endif
extern wxWinHashTable *wxWinHandleHash; extern wxWinHashTable *wxWinHandleHash;