From 8596388a5878c940cd0236884308430a0bc66ff2 Mon Sep 17 00:00:00 2001 From: Stephane Letz Date: Wed, 29 Nov 2017 17:18:13 +0100 Subject: [PATCH] Add missing addSoundfile in ladspa.cpp. --- architecture/ladspa.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/architecture/ladspa.cpp b/architecture/ladspa.cpp index a5fdaf9cd6..36a139223c 100644 --- a/architecture/ladspa.cpp +++ b/architecture/ladspa.cpp @@ -286,6 +286,8 @@ class portCollector : public UI virtual void addVerticalBargraph(const char* label, float* zone, float min, float max){ addPortDescr(OCONTROL, label, LADSPA_HINT_BOUNDED_BELOW | LADSPA_HINT_BOUNDED_ABOVE, min, max); } + + virtual void addSoundfile(const char* label, const char* filename, Soundfile** sf_zone) {} virtual void openFrameBox(const char* label) { openAnyBox(label); } virtual void openTabBox(const char* label) { openAnyBox(label); }