diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-04-03 23:02:41 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-04-22 13:03:04 +0200 |
| commit | 903c33051d45700a8e389b970c857c5339f9f395 (patch) | |
| tree | 9429e0da86d577f660763c5b60e25540daa49dda /src/wx/dcpomatic_choice.h | |
| parent | 43ac9191b0feb8f5311c3501a5e0a0f80ad1b4b9 (diff) | |
Rename Choice::add to Choice::add_entry.
Diffstat (limited to 'src/wx/dcpomatic_choice.h')
| -rw-r--r-- | src/wx/dcpomatic_choice.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/wx/dcpomatic_choice.h b/src/wx/dcpomatic_choice.h index dec0a3701..ed59f6a17 100644 --- a/src/wx/dcpomatic_choice.h +++ b/src/wx/dcpomatic_choice.h @@ -32,10 +32,10 @@ class Choice : public wxChoice public: Choice(wxWindow* parent); - void add(wxString const& entry); - void add(wxString const& entry, wxClientData* data); - void add(wxString const& entry, wxString const& data); - void add(std::string const& entry); + void add_entry(wxString const& entry); + void add_entry(wxString const& entry, wxClientData* data); + void add_entry(wxString const& entry, wxString const& data); + void add_entry(std::string const& entry); void set(int index); void set_by_data(wxString const& data); boost::optional<int> get() const; |
