2nd attempt to fix JIRA SPE-26 (Feature types on MAC)

This commit is contained in:
Enrico Turri 2018-02-20 14:25:40 +01:00
parent a569de44b6
commit 26409cbade
3 changed files with 26 additions and 4 deletions

View file

@ -6,7 +6,8 @@
class wxCheckListBoxComboPopup : public wxCheckListBox, public wxComboPopup
{
static const unsigned int Height;
static const unsigned int DefaultWidth;
static const unsigned int DefaultHeight;
wxString m_text;
@ -17,6 +18,8 @@ public:
virtual wxString GetStringValue() const;
virtual wxSize GetAdjustedSize(int minWidth, int prefHeight, int maxHeight);
virtual void OnKeyEvent(wxKeyEvent& evt);
void OnCheckListBox(wxCommandEvent& evt);
void OnListBoxSelection(wxCommandEvent& evt);
};