diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-09-02 22:20:34 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-09-02 22:20:34 +0200 |
| commit | 100d2cf989070834bf6e92e6ae35d6689b1733dd (patch) | |
| tree | 20d14c666d7bde6629e0936e4ea1c6c6dad5e838 /src | |
| parent | 552bac6f11a80beaaaa16644a93aee6ef15859c9 (diff) | |
fixup! Remove some implicit conversions between wxString and std::string.
Diffstat (limited to 'src')
| -rw-r--r-- | src/wx/grok/gpu_config_panel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/grok/gpu_config_panel.h b/src/wx/grok/gpu_config_panel.h index cbf037592..fb3e9e11a 100644 --- a/src/wx/grok/gpu_config_panel.h +++ b/src/wx/grok/gpu_config_panel.h @@ -48,7 +48,7 @@ public: GpuList(wxPanel* parent) : wxPanel(parent, wxID_ANY) { - _combo_box = new wxComboBox(this, wxID_ANY, "", wxDefaultPosition, wxSize(400, -1)); + _combo_box = new wxComboBox(this, wxID_ANY, wxString{}, wxDefaultPosition, wxSize(400, -1)); _combo_box->Bind(wxEVT_COMBOBOX, &GpuList::OnComboBox, this); update(); |
