summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-09-02 22:20:34 +0200
committerCarl Hetherington <cth@carlh.net>2024-09-02 22:20:34 +0200
commit100d2cf989070834bf6e92e6ae35d6689b1733dd (patch)
tree20d14c666d7bde6629e0936e4ea1c6c6dad5e838 /src
parent552bac6f11a80beaaaa16644a93aee6ef15859c9 (diff)
fixup! Remove some implicit conversions between wxString and std::string.
Diffstat (limited to 'src')
-rw-r--r--src/wx/grok/gpu_config_panel.h2
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();