summaryrefslogtreecommitdiff
path: root/libs/ardour/globals.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2006-06-22 21:04:47 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2006-06-22 21:04:47 +0000
commit2b5d095464a28ae680cf4454af99b4debd3bcabf (patch)
tree4ef4347a5f29e186c7d3e8284e7a3dac222fd157 /libs/ardour/globals.cc
parent58c39d50b11592c0482eb9be460889fc20ba7440 (diff)
correctly forward configure events to plugin windows, and cleanup FST code
git-svn-id: svn://localhost/ardour2/trunk@635 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/globals.cc')
-rw-r--r--libs/ardour/globals.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/ardour/globals.cc b/libs/ardour/globals.cc
index f96942bbd3..f80c9dc287 100644
--- a/libs/ardour/globals.cc
+++ b/libs/ardour/globals.cc
@@ -189,7 +189,7 @@ setup_midi ()
}
int
-ARDOUR::init (AudioEngine& engine, bool use_vst, bool try_optimization, void (*sighandler)(int,siginfo_t*,void*))
+ARDOUR::init (AudioEngine& engine, bool use_vst, bool try_optimization)
{
bool generic_mix_functions = true;
@@ -214,7 +214,7 @@ ARDOUR::init (AudioEngine& engine, bool use_vst, bool try_optimization, void (*s
#endif
#ifdef VST_SUPPORT
- if (Config->get_use_vst() && fst_init (sighandler)) {
+ if (Config->get_use_vst() && fst_init ()) {
return -1;
}
#endif