From 5c96adbd6d3cc69cb1da16b3bf20f38990837e40 Mon Sep 17 00:00:00 2001 From: Tobias Doerffel Date: Wed, 2 Sep 2009 22:29:35 +0200 Subject: [PATCH] ZynAddSubFX: fix plugin descriptor name While fixing the name of the plugin library in commit 883836aa8ac22ff78f01360e0fbee9b9853a42e6 the plugin descriptor structure has not been updated. --- plugins/zynaddsubfx/ZynAddSubFx.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/zynaddsubfx/ZynAddSubFx.cpp b/plugins/zynaddsubfx/ZynAddSubFx.cpp index ccf4d8628..91926a0f4 100644 --- a/plugins/zynaddsubfx/ZynAddSubFx.cpp +++ b/plugins/zynaddsubfx/ZynAddSubFx.cpp @@ -51,7 +51,7 @@ static const char * __supportedExts[] = extern "C" { -Plugin::Descriptor PLUGIN_EXPORT ZynAddSubFx_plugin_descriptor = +Plugin::Descriptor PLUGIN_EXPORT zynaddsubfx_plugin_descriptor = { STRINGIFY( PLUGIN_NAME ), "ZynAddSubFX", @@ -71,7 +71,7 @@ Plugin::Descriptor PLUGIN_EXPORT ZynAddSubFx_plugin_descriptor = ZynAddSubFxInstrument::ZynAddSubFxInstrument( InstrumentTrack * _instrumentTrack ) : - Instrument( _instrumentTrack, &ZynAddSubFx_plugin_descriptor ), + Instrument( _instrumentTrack, &zynaddsubfx_plugin_descriptor ), m_hasGUI( false ), m_plugin( NULL ), m_remotePlugin( NULL ) @@ -211,7 +211,7 @@ void ZynAddSubFxInstrument::loadResource( const ResourceItem * _item ) QString ZynAddSubFxInstrument::nodeName() const { - return ZynAddSubFx_plugin_descriptor.name; + return zynaddsubfx_plugin_descriptor.name; }