diff --git a/ChangeLog b/ChangeLog index 36f00b9c0..919e998ca 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2008-12-08 Tobias Doerffel + + * plugins/vst_base/vst_plugin.cpp: + win32-version: fixed crash when using VST plugins without GUI + + * include/effect_chain.h: + export effectChain for properly building FLP import DLL + 2008-12-08 Andrew Kelley * src/gui/piano_roll.cpp: diff --git a/plugins/vst_base/vst_plugin.cpp b/plugins/vst_base/vst_plugin.cpp index a1f579306..8ea2c814b 100644 --- a/plugins/vst_base/vst_plugin.cpp +++ b/plugins/vst_base/vst_plugin.cpp @@ -196,7 +196,10 @@ void vstPlugin::showEditor( QWidget * _parent ) xe->show(); #endif - m_pluginWidget->show(); + if( m_pluginWidget ) + { + m_pluginWidget->show(); + } }