Use unordered_map to store action triggers in wxPropertyGrid

Use standard container explicitly (instead of alias wxPGHashMAPI2I).
This commit is contained in:
Artur Wieczorek 2022-12-30 15:13:21 +01:00
parent 7cd5826167
commit c24b9476fa
2 changed files with 4 additions and 4 deletions

View file

@ -1539,7 +1539,7 @@ protected:
wxPGValidationInfo m_validationInfo;
// Actions and keys that trigger them.
wxPGHashMapI2I m_actionTriggers;
std::unordered_map<int, wxInt32> m_actionTriggers;
// Appearance of currently active editor.
wxPGCell m_editorAppearance;