diff --git a/tests/testableframe.h b/tests/testableframe.h index 515e908800..7626ca6e6f 100644 --- a/tests/testableframe.h +++ b/tests/testableframe.h @@ -7,9 +7,10 @@ /////////////////////////////////////////////////////////////////////////////// #include "wx/frame.h" -#include "wx/hashmap.h" #include "wx/event.h" +#include + class wxTestableFrame : public wxFrame { public: @@ -23,7 +24,7 @@ private: int GetEventCount(wxEventType type); void ClearEventCount(wxEventType type); - wxLongToLongHashMap m_count; + std::unordered_map m_count; }; class EventCounter