From 55c6d4f2be0335a5be7d2773924fade7aaee39b4 Mon Sep 17 00:00:00 2001 From: Tim Mayberry Date: Fri, 9 Aug 2013 22:11:44 +1000 Subject: Call PBD::init in ARDOUR::init and PBD::cleanup in ARDOUR::cleanup --- libs/ardour/globals.cc | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'libs') diff --git a/libs/ardour/globals.cc b/libs/ardour/globals.cc index 78994c4101..0941b72de8 100644 --- a/libs/ardour/globals.cc +++ b/libs/ardour/globals.cc @@ -60,6 +60,7 @@ #include "pbd/cpus.h" #include "pbd/error.h" #include "pbd/id.h" +#include "pbd/pbd.h" #include "pbd/strsplit.h" #include "pbd/fpu.h" #include "pbd/file_utils.h" @@ -224,9 +225,7 @@ ARDOUR::init (bool use_windows_vst, bool try_optimization, const char* localedir return true; } - if (!Glib::thread_supported()) { - Glib::thread_init(); - } + if (!PBD::init()) return false; // this really should be in PBD::init..if there was one Gio::init (); @@ -235,7 +234,6 @@ ARDOUR::init (bool use_windows_vst, bool try_optimization, const char* localedir (void) bindtextdomain(PACKAGE, localedir); #endif - PBD::ID::init (); SessionEvent::init_event_pool (); SessionObject::make_property_quarks (); @@ -373,7 +371,7 @@ ARDOUR::cleanup () #ifdef LXVST_SUPPORT vstfx_exit(); #endif - EnumWriter::destroy (); + PBD::cleanup (); return 0; } -- cgit v1.2.3