summaryrefslogtreecommitdiff
path: root/muse2/muse/dssihost.cpp
diff options
context:
space:
mode:
authorTim E. Real <termtech@rogers.com>2011-04-01 22:26:23 +0000
committerTim E. Real <termtech@rogers.com>2011-04-01 22:26:23 +0000
commitf08685a55d5090a2a22cb2808e788912cb739b99 (patch)
tree3c0a64b911b5a35ceeb2740eff90c0efa427b805 /muse2/muse/dssihost.cpp
parent0fcb500389e91c0692f2b5fa9c95684b3416e254 (diff)
Fixed custom LADSPA DSSI GUI support. Tested OK with FLAM.
Diffstat (limited to 'muse2/muse/dssihost.cpp')
-rw-r--r--muse2/muse/dssihost.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/muse2/muse/dssihost.cpp b/muse2/muse/dssihost.cpp
index 2f434972..ca867bd4 100644
--- a/muse2/muse/dssihost.cpp
+++ b/muse2/muse/dssihost.cpp
@@ -2969,6 +2969,7 @@ QString DssiSynthIF::pluginLabel() const { return (synth &&
QString DssiSynthIF::name() const { return synti->name(); }
QString DssiSynthIF::lib() const { return synth ? synth->completeBaseName() : QString(); }
QString DssiSynthIF::dirPath() const { return synth ? synth->absolutePath() : QString(); }
+QString DssiSynthIF::fileName() const { return synth ? synth->fileName() : QString(); }
AudioTrack* DssiSynthIF::track() { return (AudioTrack*)synti; }
void DssiSynthIF::enableController(int i, bool v) { controls[i].enCtrl = v; }
bool DssiSynthIF::controllerEnabled(int i) const { return controls[i].enCtrl; }