diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-09-08 21:37:18 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-09-08 21:37:18 +0200 |
| commit | 5d9de49a60c70dac3213ef8de040fcfe8bfc58aa (patch) | |
| tree | 5129b363a8f526781bcf7fe7bb6c2495c28d53f1 /src/wx/player_config_dialog.cc | |
| parent | 673198c0822cd332ec47f0e8a502db02594d6b10 (diff) | |
Use wxString for EditableListColumn.
Diffstat (limited to 'src/wx/player_config_dialog.cc')
| -rw-r--r-- | src/wx/player_config_dialog.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/wx/player_config_dialog.cc b/src/wx/player_config_dialog.cc index 00a74c659..4c3e2ca17 100644 --- a/src/wx/player_config_dialog.cc +++ b/src/wx/player_config_dialog.cc @@ -494,11 +494,11 @@ private: void setup () { vector<EditableListColumn> columns; - columns.push_back(EditableListColumn(wx_to_std(_("Manufacturer ID")))); - columns.push_back(EditableListColumn(wx_to_std(_("Product code")))); - columns.push_back(EditableListColumn(wx_to_std(_("Serial")))); - columns.push_back(EditableListColumn(wx_to_std(_("Manufacture week")))); - columns.push_back(EditableListColumn(wx_to_std(_("Manufacture year")))); + columns.push_back(EditableListColumn(_("Manufacturer ID"))); + columns.push_back(EditableListColumn(_("Product code"))); + columns.push_back(EditableListColumn(_("Serial"))); + columns.push_back(EditableListColumn(_("Manufacture week"))); + columns.push_back(EditableListColumn(_("Manufacture year"))); _monitor_list = new EditableList<Monitor, MonitorDialog> ( _panel, columns, |
