From c974797954d1bd25d458337a61d29284e9447299 Mon Sep 17 00:00:00 2001 From: Tobias Doerffel Date: Thu, 23 Dec 2010 21:53:50 +0100 Subject: [PATCH] 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. --- plugins/zynaddsubfx/ZynAddSubFx.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/zynaddsubfx/ZynAddSubFx.cpp b/plugins/zynaddsubfx/ZynAddSubFx.cpp index 8d7fba49b..c0bbeb40f 100644 --- a/plugins/zynaddsubfx/ZynAddSubFx.cpp +++ b/plugins/zynaddsubfx/ZynAddSubFx.cpp @@ -74,8 +74,9 @@ Plugin::Descriptor PLUGIN_EXPORT zynaddsubfx_plugin_descriptor = ZynAddSubFxRemotePlugin::ZynAddSubFxRemotePlugin() : QObject(), - RemotePlugin( "RemoteZynAddSubFx", false ) + RemotePlugin() { + init( "RemoteZynAddSubFx", false ); }