Fix missing switch of Append -> add (#2358).
authorCarl Hetherington <cth@carlh.net>
Mon, 24 Oct 2022 22:16:44 +0000 (00:16 +0200)
committerCarl Hetherington <cth@carlh.net>
Mon, 24 Oct 2022 22:17:00 +0000 (00:17 +0200)
src/wx/dcp_panel.cc

index 95c375819cf92f0c7b7f4dc06217e5443e1dcc75..1457c06a6ad2d4c423e5583c89ab2d3169d4b2bf 100644 (file)
@@ -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())));
        }