From: Carl Hetherington Date: Mon, 24 Oct 2022 22:16:44 +0000 (+0200) Subject: Fix missing switch of Append -> add (#2358). X-Git-Tag: v2.16.32~9 X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=811cd49873641f612a1df12b5b9d7d26bc289759 Fix missing switch of Append -> add (#2358). --- diff --git a/src/wx/dcp_panel.cc b/src/wx/dcp_panel.cc index 95c375819..1457c06a6 100644 --- a/src/wx/dcp_panel.cc +++ b/src/wx/dcp_panel.cc @@ -1014,7 +1014,7 @@ DCPPanel::reel_length_changed () void DCPPanel::add_audio_processors () { - _audio_processor->Append (_("None"), new wxStringClientData(N_("none"))); + _audio_processor->add(_("None"), new wxStringClientData(N_("none"))); for (auto ap: AudioProcessor::visible()) { _audio_processor->add(std_to_wx(ap->name()), new wxStringClientData(std_to_wx(ap->id()))); }