summaryrefslogtreecommitdiff
path: root/muse2/muse/vst.cpp
diff options
context:
space:
mode:
authorTim E. Real <termtech@rogers.com>2011-04-10 23:46:23 +0000
committerTim E. Real <termtech@rogers.com>2011-04-10 23:46:23 +0000
commitc023bdc9ab1cdc422ab35ea8b984899ee2f4219d (patch)
treeec0b774dd49a9caaa55aec58c7b9413fbb5fef66 /muse2/muse/vst.cpp
parentf8220785a652ccff66fd46ebc440ac8071288511 (diff)
Please see ChangeLog
Diffstat (limited to 'muse2/muse/vst.cpp')
-rw-r--r--muse2/muse/vst.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/muse2/muse/vst.cpp b/muse2/muse/vst.cpp
index b34b71ca..7bcae7f6 100644
--- a/muse2/muse/vst.cpp
+++ b/muse2/muse/vst.cpp
@@ -361,7 +361,7 @@ void initVST()
// guiVisible
//---------------------------------------------------------
-bool VstSynthIF::guiVisible() const
+bool VstSynthIF::nativeGuiVisible() const
{
return _guiVisible;
}
@@ -371,9 +371,9 @@ bool VstSynthIF::guiVisible() const
// showGui
//---------------------------------------------------------
-void VstSynthIF::showGui(bool v)
+void VstSynthIF::showNativeGui(bool v)
{
- if (v == guiVisible())
+ if (v == nativeGuiVisible())
return;
if (v)
fst_run_editor(_fst);
@@ -395,7 +395,7 @@ MidiPlayEvent VstSynthIF::receiveEvent()
// hasGui
//---------------------------------------------------------
-bool VstSynthIF::hasGui() const
+bool VstSynthIF::hasNativeGui() const
{
return _fst->plugin->flags & effFlagsHasEditor;
}