summaryrefslogtreecommitdiff
path: root/shared/custom_combo_box.h
diff options
context:
space:
mode:
Diffstat (limited to 'shared/custom_combo_box.h')
-rw-r--r--shared/custom_combo_box.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/shared/custom_combo_box.h b/shared/custom_combo_box.h
index 7db8cecf..28361a30 100644
--- a/shared/custom_combo_box.h
+++ b/shared/custom_combo_box.h
@@ -29,6 +29,13 @@ public:
private:
void OnKeyEvent(wxKeyEvent& event);
+
+#if wxCHECK_VERSION(2, 9, 1)
+ void OnShowDropDown(wxCommandEvent& event);
+ void OnHideDropDown(wxCommandEvent& event);
+
+ bool dropDownShown;
+#endif
};
bgstack15