From e0298891e47aab825984ea2c12d70b1ac7feb9fc Mon Sep 17 00:00:00 2001 From: Johannes Lorenz Date: Fri, 6 Aug 2021 19:48:09 +0200 Subject: [PATCH] clang-format: Prepare plugin descriptor init'ers --- plugins/Amplifier/Amplifier.cpp | 2 +- plugins/BassBooster/BassBooster.cpp | 2 +- plugins/Bitcrush/Bitcrush.cpp | 2 +- plugins/Compressor/Compressor.cpp | 2 +- plugins/CrossoverEQ/CrossoverEQ.cpp | 2 +- plugins/Delay/DelayEffect.cpp | 2 +- plugins/DualFilter/DualFilter.cpp | 2 +- plugins/Eq/EqEffect.cpp | 2 +- plugins/Flanger/FlangerEffect.cpp | 2 +- plugins/FreeBoy/FreeBoy.cpp | 2 +- plugins/GigPlayer/GigPlayer.cpp | 2 +- plugins/HydrogenImport/HydrogenImport.cpp | 2 +- plugins/MidiExport/MidiExport.cpp | 2 +- plugins/MidiImport/MidiImport.cpp | 2 +- plugins/MultitapEcho/MultitapEcho.cpp | 2 +- plugins/OpulenZ/OpulenZ.cpp | 2 +- plugins/ReverbSC/ReverbSC.cpp | 2 +- plugins/Sid/SidInstrument.cpp | 2 +- plugins/SpectrumAnalyzer/Analyzer.cpp | 2 +- plugins/Vectorscope/Vectorscope.cpp | 2 +- plugins/audio_file_processor/audio_file_processor.cpp | 2 +- plugins/bit_invader/bit_invader.cpp | 2 +- plugins/carlapatchbay/carlapatchbay.cpp | 2 +- plugins/carlarack/carlarack.cpp | 2 +- plugins/dynamics_processor/dynamics_processor.cpp | 2 +- plugins/kicker/kicker.cpp | 2 +- plugins/ladspa_browser/ladspa_browser.cpp | 2 +- plugins/lb302/lb302.cpp | 2 +- plugins/monstro/Monstro.cpp | 2 +- plugins/nes/Nes.cpp | 2 +- plugins/organic/organic.cpp | 2 +- plugins/patman/patman.cpp | 2 +- plugins/peak_controller_effect/peak_controller_effect.cpp | 2 +- plugins/sf2_player/sf2_player.cpp | 2 +- plugins/sfxr/sfxr.cpp | 2 +- plugins/stereo_enhancer/stereo_enhancer.cpp | 2 +- plugins/stereo_matrix/stereo_matrix.cpp | 2 +- plugins/stk/mallets/mallets.cpp | 2 +- plugins/triple_oscillator/TripleOscillator.cpp | 2 +- plugins/vestige/vestige.cpp | 2 +- plugins/vibed/vibed.cpp | 2 +- plugins/vst_base/vst_base.cpp | 2 +- plugins/watsyn/Watsyn.cpp | 2 +- plugins/waveshaper/waveshaper.cpp | 2 +- 44 files changed, 44 insertions(+), 44 deletions(-) diff --git a/plugins/Amplifier/Amplifier.cpp b/plugins/Amplifier/Amplifier.cpp index e7250872f..176f0d012 100644 --- a/plugins/Amplifier/Amplifier.cpp +++ b/plugins/Amplifier/Amplifier.cpp @@ -41,7 +41,7 @@ Plugin::Descriptor PLUGIN_EXPORT amplifier_plugin_descriptor = Plugin::Effect, new PluginPixmapLoader("logo"), NULL, - NULL + NULL, } ; } diff --git a/plugins/BassBooster/BassBooster.cpp b/plugins/BassBooster/BassBooster.cpp index f60694995..c60198b05 100644 --- a/plugins/BassBooster/BassBooster.cpp +++ b/plugins/BassBooster/BassBooster.cpp @@ -40,7 +40,7 @@ Plugin::Descriptor PLUGIN_EXPORT bassbooster_plugin_descriptor = Plugin::Effect, new PluginPixmapLoader("logo"), NULL, - NULL + NULL, } ; } diff --git a/plugins/Bitcrush/Bitcrush.cpp b/plugins/Bitcrush/Bitcrush.cpp index f9bb17614..339e5c777 100644 --- a/plugins/Bitcrush/Bitcrush.cpp +++ b/plugins/Bitcrush/Bitcrush.cpp @@ -47,7 +47,7 @@ Plugin::Descriptor PLUGIN_EXPORT bitcrush_plugin_descriptor = Plugin::Effect, new PluginPixmapLoader( "logo" ), NULL, - NULL + NULL, }; } diff --git a/plugins/Compressor/Compressor.cpp b/plugins/Compressor/Compressor.cpp index b7550b13d..b9cb8fb9e 100755 --- a/plugins/Compressor/Compressor.cpp +++ b/plugins/Compressor/Compressor.cpp @@ -42,7 +42,7 @@ Plugin::Descriptor PLUGIN_EXPORT compressor_plugin_descriptor = Plugin::Effect, new PluginPixmapLoader("logo"), NULL, - NULL + NULL, } ; } diff --git a/plugins/CrossoverEQ/CrossoverEQ.cpp b/plugins/CrossoverEQ/CrossoverEQ.cpp index 930860dd5..d2a46eaee 100644 --- a/plugins/CrossoverEQ/CrossoverEQ.cpp +++ b/plugins/CrossoverEQ/CrossoverEQ.cpp @@ -42,7 +42,7 @@ Plugin::Descriptor PLUGIN_EXPORT crossovereq_plugin_descriptor = Plugin::Effect, new PluginPixmapLoader( "logo" ), NULL, - NULL + NULL, }; } diff --git a/plugins/Delay/DelayEffect.cpp b/plugins/Delay/DelayEffect.cpp index 8cf0439eb..d51cde53a 100644 --- a/plugins/Delay/DelayEffect.cpp +++ b/plugins/Delay/DelayEffect.cpp @@ -41,7 +41,7 @@ Plugin::Descriptor PLUGIN_EXPORT delay_plugin_descriptor = Plugin::Effect, new PluginPixmapLoader("logo"), NULL, - NULL + NULL, } ; diff --git a/plugins/DualFilter/DualFilter.cpp b/plugins/DualFilter/DualFilter.cpp index 86c280c3d..b425ed6bd 100644 --- a/plugins/DualFilter/DualFilter.cpp +++ b/plugins/DualFilter/DualFilter.cpp @@ -42,7 +42,7 @@ Plugin::Descriptor PLUGIN_EXPORT dualfilter_plugin_descriptor = Plugin::Effect, new PluginPixmapLoader( "logo" ), NULL, - NULL + NULL, } ; } diff --git a/plugins/Eq/EqEffect.cpp b/plugins/Eq/EqEffect.cpp index 820525eec..d4ae121e7 100644 --- a/plugins/Eq/EqEffect.cpp +++ b/plugins/Eq/EqEffect.cpp @@ -45,7 +45,7 @@ Plugin::Descriptor PLUGIN_EXPORT eq_plugin_descriptor = Plugin::Effect, new PluginPixmapLoader("logo"), NULL, - NULL + NULL, } ; } diff --git a/plugins/Flanger/FlangerEffect.cpp b/plugins/Flanger/FlangerEffect.cpp index beccdf02b..dd086159b 100644 --- a/plugins/Flanger/FlangerEffect.cpp +++ b/plugins/Flanger/FlangerEffect.cpp @@ -41,7 +41,7 @@ Plugin::Descriptor PLUGIN_EXPORT flanger_plugin_descriptor = Plugin::Effect, new PluginPixmapLoader("logo"), NULL, - NULL + NULL, } ; diff --git a/plugins/FreeBoy/FreeBoy.cpp b/plugins/FreeBoy/FreeBoy.cpp index 5004d392d..0bf0d2f84 100644 --- a/plugins/FreeBoy/FreeBoy.cpp +++ b/plugins/FreeBoy/FreeBoy.cpp @@ -60,7 +60,7 @@ Plugin::Descriptor PLUGIN_EXPORT freeboy_plugin_descriptor = 0x0100, Plugin::Instrument, new PluginPixmapLoader( "logo" ), - NULL + NULL, } ; } diff --git a/plugins/GigPlayer/GigPlayer.cpp b/plugins/GigPlayer/GigPlayer.cpp index 323580224..9c9f5a7d0 100644 --- a/plugins/GigPlayer/GigPlayer.cpp +++ b/plugins/GigPlayer/GigPlayer.cpp @@ -69,7 +69,7 @@ Plugin::Descriptor PLUGIN_EXPORT gigplayer_plugin_descriptor = Plugin::Instrument, new PluginPixmapLoader( "logo" ), "gig", - NULL + NULL, } ; } diff --git a/plugins/HydrogenImport/HydrogenImport.cpp b/plugins/HydrogenImport/HydrogenImport.cpp index 72b5dd7aa..a786f56c1 100644 --- a/plugins/HydrogenImport/HydrogenImport.cpp +++ b/plugins/HydrogenImport/HydrogenImport.cpp @@ -36,7 +36,7 @@ Plugin::Descriptor PLUGIN_EXPORT hydrogenimport_plugin_descriptor = Plugin::ImportFilter, NULL, NULL, - NULL + NULL, } ; } diff --git a/plugins/MidiExport/MidiExport.cpp b/plugins/MidiExport/MidiExport.cpp index b29755a14..c285180db 100644 --- a/plugins/MidiExport/MidiExport.cpp +++ b/plugins/MidiExport/MidiExport.cpp @@ -56,7 +56,7 @@ Plugin::Descriptor PLUGIN_EXPORT midiexport_plugin_descriptor = Plugin::ExportFilter, NULL, NULL, - NULL + NULL, } ; } diff --git a/plugins/MidiImport/MidiImport.cpp b/plugins/MidiImport/MidiImport.cpp index a2b877394..5ed48a3c7 100644 --- a/plugins/MidiImport/MidiImport.cpp +++ b/plugins/MidiImport/MidiImport.cpp @@ -72,7 +72,7 @@ Plugin::Descriptor PLUGIN_EXPORT midiimport_plugin_descriptor = Plugin::ImportFilter, NULL, NULL, - NULL + NULL, } ; } diff --git a/plugins/MultitapEcho/MultitapEcho.cpp b/plugins/MultitapEcho/MultitapEcho.cpp index 2ee322905..fec67c4dc 100644 --- a/plugins/MultitapEcho/MultitapEcho.cpp +++ b/plugins/MultitapEcho/MultitapEcho.cpp @@ -40,7 +40,7 @@ Plugin::Descriptor PLUGIN_EXPORT multitapecho_plugin_descriptor = Plugin::Effect, new PluginPixmapLoader( "logo" ), NULL, - NULL + NULL, } ; } diff --git a/plugins/OpulenZ/OpulenZ.cpp b/plugins/OpulenZ/OpulenZ.cpp index 760138702..7cc620923 100644 --- a/plugins/OpulenZ/OpulenZ.cpp +++ b/plugins/OpulenZ/OpulenZ.cpp @@ -75,7 +75,7 @@ Plugin::Descriptor PLUGIN_EXPORT opulenz_plugin_descriptor = Plugin::Instrument, new PluginPixmapLoader( "logo" ), "sbi", - NULL + NULL, }; // necessary for getting instance out of shared lib diff --git a/plugins/ReverbSC/ReverbSC.cpp b/plugins/ReverbSC/ReverbSC.cpp index f544511b1..9149eefc5 100644 --- a/plugins/ReverbSC/ReverbSC.cpp +++ b/plugins/ReverbSC/ReverbSC.cpp @@ -41,7 +41,7 @@ Plugin::Descriptor PLUGIN_EXPORT reverbsc_plugin_descriptor = Plugin::Effect, new PluginPixmapLoader( "logo" ), NULL, - NULL + NULL, } ; } diff --git a/plugins/Sid/SidInstrument.cpp b/plugins/Sid/SidInstrument.cpp index d8498c55a..28831f7db 100644 --- a/plugins/Sid/SidInstrument.cpp +++ b/plugins/Sid/SidInstrument.cpp @@ -84,7 +84,7 @@ Plugin::Descriptor PLUGIN_EXPORT sid_plugin_descriptor = Plugin::Instrument, new PluginPixmapLoader( "logo" ), NULL, - NULL + NULL, } ; } diff --git a/plugins/SpectrumAnalyzer/Analyzer.cpp b/plugins/SpectrumAnalyzer/Analyzer.cpp index 87a8542e9..bb0d644e5 100644 --- a/plugins/SpectrumAnalyzer/Analyzer.cpp +++ b/plugins/SpectrumAnalyzer/Analyzer.cpp @@ -48,7 +48,7 @@ extern "C" { Plugin::Effect, new PluginPixmapLoader("logo"), NULL, - NULL + NULL, }; } diff --git a/plugins/Vectorscope/Vectorscope.cpp b/plugins/Vectorscope/Vectorscope.cpp index 30d33aa2d..b8f2c2ad5 100644 --- a/plugins/Vectorscope/Vectorscope.cpp +++ b/plugins/Vectorscope/Vectorscope.cpp @@ -39,7 +39,7 @@ extern "C" { Plugin::Effect, new PluginPixmapLoader("logo"), NULL, - NULL + NULL, }; } diff --git a/plugins/audio_file_processor/audio_file_processor.cpp b/plugins/audio_file_processor/audio_file_processor.cpp index bff0fd0f1..5f9fe59b2 100644 --- a/plugins/audio_file_processor/audio_file_processor.cpp +++ b/plugins/audio_file_processor/audio_file_processor.cpp @@ -65,7 +65,7 @@ Plugin::Descriptor PLUGIN_EXPORT audiofileprocessor_plugin_descriptor = Plugin::Instrument, new PluginPixmapLoader( "logo" ), "wav,ogg,ds,spx,au,voc,aif,aiff,flac,raw", - NULL + NULL, } ; } diff --git a/plugins/bit_invader/bit_invader.cpp b/plugins/bit_invader/bit_invader.cpp index dd0ca20d5..54af6da3f 100644 --- a/plugins/bit_invader/bit_invader.cpp +++ b/plugins/bit_invader/bit_invader.cpp @@ -61,7 +61,7 @@ Plugin::Descriptor PLUGIN_EXPORT bitinvader_plugin_descriptor = Plugin::Instrument, new PluginPixmapLoader( "logo" ), NULL, - NULL + NULL, } ; } diff --git a/plugins/carlapatchbay/carlapatchbay.cpp b/plugins/carlapatchbay/carlapatchbay.cpp index 0090b3fcc..4a0f634fe 100644 --- a/plugins/carlapatchbay/carlapatchbay.cpp +++ b/plugins/carlapatchbay/carlapatchbay.cpp @@ -42,7 +42,7 @@ Plugin::Descriptor PLUGIN_EXPORT carlapatchbay_plugin_descriptor = Plugin::Instrument, new PluginPixmapLoader( "logo" ), NULL, - NULL + NULL, } ; PLUGIN_EXPORT Plugin* lmms_plugin_main(Model* m, void*) diff --git a/plugins/carlarack/carlarack.cpp b/plugins/carlarack/carlarack.cpp index 3b3f443ab..451a774c9 100644 --- a/plugins/carlarack/carlarack.cpp +++ b/plugins/carlarack/carlarack.cpp @@ -42,7 +42,7 @@ Plugin::Descriptor PLUGIN_EXPORT carlarack_plugin_descriptor = Plugin::Instrument, new PluginPixmapLoader( "logo" ), NULL, - NULL + NULL, } ; PLUGIN_EXPORT Plugin* lmms_plugin_main(Model* m, void*) diff --git a/plugins/dynamics_processor/dynamics_processor.cpp b/plugins/dynamics_processor/dynamics_processor.cpp index 954864a4f..92b4d1443 100644 --- a/plugins/dynamics_processor/dynamics_processor.cpp +++ b/plugins/dynamics_processor/dynamics_processor.cpp @@ -45,7 +45,7 @@ Plugin::Descriptor PLUGIN_EXPORT dynamicsprocessor_plugin_descriptor = Plugin::Effect, new PluginPixmapLoader("logo"), NULL, - NULL + NULL, } ; } diff --git a/plugins/kicker/kicker.cpp b/plugins/kicker/kicker.cpp index b1a77d509..87b684e5f 100644 --- a/plugins/kicker/kicker.cpp +++ b/plugins/kicker/kicker.cpp @@ -52,7 +52,7 @@ Plugin::Descriptor PLUGIN_EXPORT kicker_plugin_descriptor = Plugin::Instrument, new PluginPixmapLoader( "logo" ), NULL, - NULL + NULL, } ; } diff --git a/plugins/ladspa_browser/ladspa_browser.cpp b/plugins/ladspa_browser/ladspa_browser.cpp index b36333634..7027e1ae4 100644 --- a/plugins/ladspa_browser/ladspa_browser.cpp +++ b/plugins/ladspa_browser/ladspa_browser.cpp @@ -56,7 +56,7 @@ Plugin::Descriptor PLUGIN_EXPORT ladspabrowser_plugin_descriptor = Plugin::Tool, new PluginPixmapLoader("logo"), NULL, - NULL + NULL, } ; diff --git a/plugins/lb302/lb302.cpp b/plugins/lb302/lb302.cpp index de26402aa..7120bda64 100644 --- a/plugins/lb302/lb302.cpp +++ b/plugins/lb302/lb302.cpp @@ -90,7 +90,7 @@ Plugin::Descriptor PLUGIN_EXPORT lb302_plugin_descriptor = Plugin::Instrument, new PluginPixmapLoader( "logo" ), NULL, - NULL + NULL, }; } diff --git a/plugins/monstro/Monstro.cpp b/plugins/monstro/Monstro.cpp index e2d543db1..4658ad199 100644 --- a/plugins/monstro/Monstro.cpp +++ b/plugins/monstro/Monstro.cpp @@ -52,7 +52,7 @@ Plugin::Descriptor PLUGIN_EXPORT monstro_plugin_descriptor = Plugin::Instrument, new PluginPixmapLoader( "logo" ), NULL, - NULL + NULL, } ; } diff --git a/plugins/nes/Nes.cpp b/plugins/nes/Nes.cpp index 40f39638e..98c5c8233 100644 --- a/plugins/nes/Nes.cpp +++ b/plugins/nes/Nes.cpp @@ -51,7 +51,7 @@ Plugin::Descriptor PLUGIN_EXPORT nes_plugin_descriptor = Plugin::Instrument, new PluginPixmapLoader( "logo" ), NULL, - NULL + NULL, } ; } diff --git a/plugins/organic/organic.cpp b/plugins/organic/organic.cpp index bc1e3e671..3d28037c6 100644 --- a/plugins/organic/organic.cpp +++ b/plugins/organic/organic.cpp @@ -58,7 +58,7 @@ Plugin::Descriptor PLUGIN_EXPORT organic_plugin_descriptor = Plugin::Instrument, new PluginPixmapLoader( "logo" ), NULL, - NULL + NULL, } ; } diff --git a/plugins/patman/patman.cpp b/plugins/patman/patman.cpp index b694ee2a0..4c8ba41d1 100644 --- a/plugins/patman/patman.cpp +++ b/plugins/patman/patman.cpp @@ -62,7 +62,7 @@ Plugin::Descriptor PLUGIN_EXPORT patman_plugin_descriptor = Plugin::Instrument, new PluginPixmapLoader( "logo" ), "pat", - NULL + NULL, } ; diff --git a/plugins/peak_controller_effect/peak_controller_effect.cpp b/plugins/peak_controller_effect/peak_controller_effect.cpp index 01d24600e..64b8472bf 100644 --- a/plugins/peak_controller_effect/peak_controller_effect.cpp +++ b/plugins/peak_controller_effect/peak_controller_effect.cpp @@ -48,7 +48,7 @@ Plugin::Descriptor PLUGIN_EXPORT peakcontrollereffect_plugin_descriptor = Plugin::Effect, new PluginPixmapLoader("logo"), NULL, - NULL + NULL, } ; } diff --git a/plugins/sf2_player/sf2_player.cpp b/plugins/sf2_player/sf2_player.cpp index 1eb669053..70a0650a1 100644 --- a/plugins/sf2_player/sf2_player.cpp +++ b/plugins/sf2_player/sf2_player.cpp @@ -63,7 +63,7 @@ Plugin::Descriptor PLUGIN_EXPORT sf2player_plugin_descriptor = Plugin::Instrument, new PluginPixmapLoader( "logo" ), "sf2,sf3", - NULL + NULL, } ; } diff --git a/plugins/sfxr/sfxr.cpp b/plugins/sfxr/sfxr.cpp index 6011aabc1..e02bc7285 100644 --- a/plugins/sfxr/sfxr.cpp +++ b/plugins/sfxr/sfxr.cpp @@ -69,7 +69,7 @@ Plugin::Descriptor PLUGIN_EXPORT sfxr_plugin_descriptor = Plugin::Instrument, new PluginPixmapLoader( "logo" ), NULL, - NULL + NULL, } ; } diff --git a/plugins/stereo_enhancer/stereo_enhancer.cpp b/plugins/stereo_enhancer/stereo_enhancer.cpp index 3f5a9a38c..f5afebd39 100644 --- a/plugins/stereo_enhancer/stereo_enhancer.cpp +++ b/plugins/stereo_enhancer/stereo_enhancer.cpp @@ -42,7 +42,7 @@ Plugin::Descriptor PLUGIN_EXPORT stereoenhancer_plugin_descriptor = Plugin::Effect, new PluginPixmapLoader("logo"), NULL, - NULL + NULL, } ; } diff --git a/plugins/stereo_matrix/stereo_matrix.cpp b/plugins/stereo_matrix/stereo_matrix.cpp index 2ec9b4950..afabf959b 100644 --- a/plugins/stereo_matrix/stereo_matrix.cpp +++ b/plugins/stereo_matrix/stereo_matrix.cpp @@ -42,7 +42,7 @@ Plugin::Descriptor PLUGIN_EXPORT stereomatrix_plugin_descriptor = Plugin::Effect, new PluginPixmapLoader("logo"), NULL, - NULL + NULL, } ; } diff --git a/plugins/stk/mallets/mallets.cpp b/plugins/stk/mallets/mallets.cpp index 05836edeb..6a58f7cfa 100644 --- a/plugins/stk/mallets/mallets.cpp +++ b/plugins/stk/mallets/mallets.cpp @@ -57,7 +57,7 @@ Plugin::Descriptor PLUGIN_EXPORT malletsstk_plugin_descriptor = Plugin::Instrument, new PluginPixmapLoader( "logo" ), NULL, - NULL + NULL, } ; } diff --git a/plugins/triple_oscillator/TripleOscillator.cpp b/plugins/triple_oscillator/TripleOscillator.cpp index 6d8a00d46..dcb21bb8e 100644 --- a/plugins/triple_oscillator/TripleOscillator.cpp +++ b/plugins/triple_oscillator/TripleOscillator.cpp @@ -57,7 +57,7 @@ Plugin::Descriptor PLUGIN_EXPORT tripleoscillator_plugin_descriptor = Plugin::Instrument, new PluginPixmapLoader( "logo" ), NULL, - NULL + NULL, } ; } diff --git a/plugins/vestige/vestige.cpp b/plugins/vestige/vestige.cpp index f5918b3de..837a5721f 100644 --- a/plugins/vestige/vestige.cpp +++ b/plugins/vestige/vestige.cpp @@ -79,7 +79,7 @@ Plugin::Descriptor Q_DECL_EXPORT vestige_plugin_descriptor = Plugin::Instrument, new PluginPixmapLoader( "logo" ), "dll", - NULL + NULL, } ; } diff --git a/plugins/vibed/vibed.cpp b/plugins/vibed/vibed.cpp index 746995d42..bc9430ed4 100644 --- a/plugins/vibed/vibed.cpp +++ b/plugins/vibed/vibed.cpp @@ -55,7 +55,7 @@ Plugin::Descriptor PLUGIN_EXPORT vibedstrings_plugin_descriptor = Plugin::Instrument, new PluginPixmapLoader( "logo" ), NULL, - NULL + NULL, }; } diff --git a/plugins/vst_base/vst_base.cpp b/plugins/vst_base/vst_base.cpp index 0ca1159a2..7e4568382 100644 --- a/plugins/vst_base/vst_base.cpp +++ b/plugins/vst_base/vst_base.cpp @@ -40,7 +40,7 @@ Plugin::Descriptor VSTBASE_EXPORT vstbase_plugin_descriptor = 0x0100, Plugin::Library, NULL, - NULL + NULL, } ; } diff --git a/plugins/watsyn/Watsyn.cpp b/plugins/watsyn/Watsyn.cpp index 6736cbf4e..b8788f8d9 100644 --- a/plugins/watsyn/Watsyn.cpp +++ b/plugins/watsyn/Watsyn.cpp @@ -51,7 +51,7 @@ Plugin::Descriptor PLUGIN_EXPORT watsyn_plugin_descriptor = Plugin::Instrument, new PluginPixmapLoader( "logo" ), NULL, - NULL + NULL, } ; } diff --git a/plugins/waveshaper/waveshaper.cpp b/plugins/waveshaper/waveshaper.cpp index 5327d931d..9f869e460 100644 --- a/plugins/waveshaper/waveshaper.cpp +++ b/plugins/waveshaper/waveshaper.cpp @@ -45,7 +45,7 @@ Plugin::Descriptor PLUGIN_EXPORT waveshaper_plugin_descriptor = Plugin::Effect, new PluginPixmapLoader("logo"), NULL, - NULL + NULL, } ; }