ZynAddSubFX: fix plugin descriptor name
While fixing the name of the plugin library in commit883836aa8athe plugin descriptor structure has not been updated. (cherry picked from commit5c96adbd6d)
This commit is contained in:
@@ -46,7 +46,7 @@
|
||||
extern "C"
|
||||
{
|
||||
|
||||
Plugin::Descriptor PLUGIN_EXPORT ZynAddSubFx_plugin_descriptor =
|
||||
Plugin::Descriptor PLUGIN_EXPORT zynaddsubfx_plugin_descriptor =
|
||||
{
|
||||
STRINGIFY( PLUGIN_NAME ),
|
||||
"ZynAddSubFX",
|
||||
@@ -66,7 +66,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 )
|
||||
@@ -204,7 +204,7 @@ void zynAddSubFx::loadFile( const QString & _file )
|
||||
|
||||
QString ZynAddSubFxInstrument::nodeName() const
|
||||
{
|
||||
return ZynAddSubFx_plugin_descriptor.name;
|
||||
return zynaddsubfx_plugin_descriptor.name;
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user