From f32be876337e3b280ee4ea257e9868a0d61e399d Mon Sep 17 00:00:00 2001 From: Max Horn Date: Wed, 5 Nov 2008 17:24:56 +0000 Subject: Turned enum PluginError into Common::Error, which in the future is to be used in more places. Help with this is highly welcome svn-id: r34906 --- sound/softsynth/fluidsynth.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sound/softsynth/fluidsynth.cpp') diff --git a/sound/softsynth/fluidsynth.cpp b/sound/softsynth/fluidsynth.cpp index eff9f4123c..4bf68afaea 100644 --- a/sound/softsynth/fluidsynth.cpp +++ b/sound/softsynth/fluidsynth.cpp @@ -230,7 +230,7 @@ public: } MusicDevices getDevices() const; - PluginError createInstance(Audio::Mixer *mixer, MidiDriver **mididriver) const; + Common::Error createInstance(Audio::Mixer *mixer, MidiDriver **mididriver) const; }; MusicDevices FluidSynthMusicPlugin::getDevices() const { @@ -239,7 +239,7 @@ MusicDevices FluidSynthMusicPlugin::getDevices() const { return devices; } -PluginError FluidSynthMusicPlugin::createInstance(Audio::Mixer *mixer, MidiDriver **mididriver) const { +Common::Error FluidSynthMusicPlugin::createInstance(Audio::Mixer *mixer, MidiDriver **mididriver) const { *mididriver = new MidiDriver_FluidSynth(mixer); return kNoError; -- cgit v1.2.3