diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-01-25 19:55:37 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-01-25 19:55:37 +0000 |
| commit | a7130995cf5f13396746932511ba133e8ad4ca9d (patch) | |
| tree | 92c407ead30b50e539029fcc5a0e6030bc0c9a90 /src/wx/wx_util.h | |
| parent | 7101dd05ddcde66600bded064e28b491d79e3ebc (diff) | |
Use wxChoice instead of wxComboBox throughout. Fixes dcp content type hanging over on new film.
Diffstat (limited to 'src/wx/wx_util.h')
| -rw-r--r-- | src/wx/wx_util.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/wx_util.h b/src/wx/wx_util.h index 6cb7fd002..0c77735eb 100644 --- a/src/wx/wx_util.h +++ b/src/wx/wx_util.h @@ -58,8 +58,8 @@ extern std::string string_client_data (wxClientData* o); extern void checked_set (wxFilePickerCtrl* widget, std::string value); extern void checked_set (wxSpinCtrl* widget, int value); -extern void checked_set (wxComboBox* widget, int value); -extern void checked_set (wxComboBox* widget, std::string value); +extern void checked_set (wxChoice* widget, int value); +extern void checked_set (wxChoice* widget, std::string value); extern void checked_set (wxTextCtrl* widget, std::string value); extern void checked_set (wxCheckBox* widget, bool value); extern void checked_set (wxRadioButton* widget, bool value); |
