VstEffectControlDialog: fixed preprocessor macro logic

Fixed preprocessor macro logic that was messed up in commit
fa9e0f762c.
(cherry picked from commit 342ea2ba05)
This commit is contained in:
Tobias Doerffel
2010-09-02 23:46:11 +02:00
parent 1bf3768c1c
commit 49d833c2fd

View File

@@ -51,7 +51,8 @@ VstEffectControlDialog::VstEffectControlDialog( VstEffectControls * _ctl ) :
connect( btn, SIGNAL( toggled( bool ) ),
m_pluginWidget, SLOT( setVisible( bool ) ) );
}
#elif LMMS_BUILD_WIN32
#endif
#ifdef LMMS_BUILD_WIN32
_ctl->m_effect->m_plugin->showEditor( this );
QWidget * w = _ctl->m_effect->m_plugin->pluginWidget( false );
if( w )