summaryrefslogtreecommitdiff
path: root/gtk2_ardour/plugin_eq_gui.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2011-03-03 17:58:11 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2011-03-03 17:58:11 +0000
commit80c46cc451fed4b50bd1e974b4586fcea99c1ab5 (patch)
tree804c1787bdca9b87a950b0d924abf284c67c6157 /gtk2_ardour/plugin_eq_gui.h
parent1ba667a0c176c6560bc8d61c8b11e66493920c70 (diff)
put sampo's FFT into the (new) GTKArdour namespace, to avoid collision with the FFT in the QM DSP library. they should both be namespaced but its easier to avoid changing the QM code at all
git-svn-id: svn://localhost/ardour2/branches/3.0@9056 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/plugin_eq_gui.h')
-rw-r--r--gtk2_ardour/plugin_eq_gui.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/gtk2_ardour/plugin_eq_gui.h b/gtk2_ardour/plugin_eq_gui.h
index 5fc0af0fc0..e38bc8e8f7 100644
--- a/gtk2_ardour/plugin_eq_gui.h
+++ b/gtk2_ardour/plugin_eq_gui.h
@@ -30,7 +30,9 @@
#include <gtkmm/combobox.h>
#include <gtkmm/liststore.h>
-class FFT;
+namespace GTKArdour {
+ class FFT;
+}
class PluginEqGui : public Gtk::Table
{
@@ -98,9 +100,9 @@ private:
float _analysis_height;
// My objects
- FFT *_impulse_fft;
- FFT *_signal_input_fft;
- FFT *_signal_output_fft;
+ GTKArdour::FFT *_impulse_fft;
+ GTKArdour::FFT *_signal_input_fft;
+ GTKArdour::FFT *_signal_output_fft;
boost::shared_ptr<ARDOUR::Plugin> _plugin;
boost::shared_ptr<ARDOUR::PluginInsert> _plugin_insert;