summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-10-25 00:16:44 +0200
committerCarl Hetherington <cth@carlh.net>2022-10-25 00:17:00 +0200
commit811cd49873641f612a1df12b5b9d7d26bc289759 (patch)
treee6aaba019f8143f56f90e0c0fb49ce3f32f46935
parent13ebde8a7ab4423d4380ece07b93c180a7234b0b (diff)
Fix missing switch of Append -> add (#2358).
-rw-r--r--src/wx/dcp_panel.cc2
1 files changed, 1 insertions, 1 deletions
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())));
}