ZynAddSubFX: use new RemotePlugin::init() method

The old method of passing remote process executable and flags to
constructor is not supported anymore. Use RemotePlugin::init() instead.
This commit is contained in:
Tobias Doerffel
2010-12-23 21:53:50 +01:00
parent 39cc1a8212
commit c974797954

View File

@@ -74,8 +74,9 @@ Plugin::Descriptor PLUGIN_EXPORT zynaddsubfx_plugin_descriptor =
ZynAddSubFxRemotePlugin::ZynAddSubFxRemotePlugin() :
QObject(),
RemotePlugin( "RemoteZynAddSubFx", false )
RemotePlugin()
{
init( "RemoteZynAddSubFx", false );
}