diff options
author | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:09:24 +0200 |
---|---|---|
committer | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:09:24 +0200 |
commit | b5f042a6c132c1b97cf03c4615bab966c23f57d2 (patch) | |
tree | 1cb057a0ffd51264bb3c9807e2133505ce312eb1 /shared/custom_combo_box.h | |
parent | 3.11 (diff) | |
download | FreeFileSync-b5f042a6c132c1b97cf03c4615bab966c23f57d2.tar.gz FreeFileSync-b5f042a6c132c1b97cf03c4615bab966c23f57d2.tar.bz2 FreeFileSync-b5f042a6c132c1b97cf03c4615bab966c23f57d2.zip |
3.12
Diffstat (limited to 'shared/custom_combo_box.h')
-rw-r--r-- | shared/custom_combo_box.h | 7 |
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 }; |