diff options
Diffstat (limited to 'xfa/fwl/cfwl_notedriver.h')
-rw-r--r-- | xfa/fwl/cfwl_notedriver.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/xfa/fwl/cfwl_notedriver.h b/xfa/fwl/cfwl_notedriver.h index 2ea3f97cc0..b55e701c40 100644 --- a/xfa/fwl/cfwl_notedriver.h +++ b/xfa/fwl/cfwl_notedriver.h @@ -8,8 +8,8 @@ #define XFA_FWL_CFWL_NOTEDRIVER_H_ #include <deque> +#include <map> #include <memory> -#include <unordered_map> #include <vector> #include "xfa/fwl/cfwl_event.h" @@ -69,8 +69,7 @@ class CFWL_NoteDriver { std::vector<CFWL_Widget*> m_Forms; std::deque<std::unique_ptr<CFWL_Message>> m_NoteQueue; std::vector<CFWL_NoteLoop*> m_NoteLoopQueue; - std::unordered_map<uint32_t, std::unique_ptr<CFWL_EventTarget>> - m_eventTargets; + std::map<uint32_t, std::unique_ptr<CFWL_EventTarget>> m_eventTargets; CFWL_Widget* m_pHover; CFWL_Widget* m_pFocus; CFWL_Widget* m_pGrab; |