diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-09-04 11:03:36 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-09-04 11:03:36 +0200 |
| commit | 9a982c9160f28aa2ee289e3f0f7e6f69c94ed68f (patch) | |
| tree | 48fc1e3de7a67698e7efb51ae156d51feb59ed01 | |
| parent | 247629240fff48777257791a4d2c685ef0150cb2 (diff) | |
Fix some ambiguous strings.
| -rw-r--r-- | src/wx/player_information.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/player_information.cc b/src/wx/player_information.cc index c2d6fa74c..9b8aafd18 100644 --- a/src/wx/player_information.cc +++ b/src/wx/player_information.cc @@ -125,9 +125,9 @@ PlayerInformation::triggered_update () if (!dcp) { checked_set (_dcp[0], _("No DCP loaded.")); for (int r = 1; r < dcp_lines; ++r) { - checked_set(_dcp[r], ""); + checked_set(_dcp[r], wxString{}); } - checked_set(_decode_resolution, ""); + checked_set(_decode_resolution, wxString{}); _kdm_panel->Hide(); return; } |
