From a6fb6a0289ea47692d87f3e0200532a426f8e60d Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 28 Jul 2008 21:56:03 +0000 Subject: Simply global memory management crap by using shared_ptr in the World struct (it's not C anyway, might as well). Properly support LV2 events from plugin UIs over OSC and directly (w/ monolithic UI/engine). Fix crashes on node destruction with monolithic UI/engine. Resolves ticket #177. git-svn-id: http://svn.drobilla.net/lad/ingen@1293 a436a847-0d15-0410-975c-d299462d15a1 --- src/libs/gui/ConnectWindow.hpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/libs/gui/ConnectWindow.hpp') diff --git a/src/libs/gui/ConnectWindow.hpp b/src/libs/gui/ConnectWindow.hpp index 315ae0b2..53d0ccd5 100644 --- a/src/libs/gui/ConnectWindow.hpp +++ b/src/libs/gui/ConnectWindow.hpp @@ -51,8 +51,8 @@ class ConnectWindow : public Gtk::Dialog public: ConnectWindow(BaseObjectType* cobject, const Glib::RefPtr& xml); - void set_connected_to(SharedPtr e=SharedPtr()); - void start(SharedPtr engine, SharedPtr interface); + void set_connected_to(SharedPtr engine); + void start(Ingen::Shared::World* world); void response_ok_received(int32_t id) { if ((id) == _ping_id) _attached = true; } private: @@ -77,8 +77,6 @@ private: SharedPtr _engine_module; Ingen::Engine* (*_new_engine)(Ingen::Shared::World* world); - SharedPtr _engine; - Gtk::Image* _icon; Gtk::ProgressBar* _progress_bar; Gtk::Label* _progress_label; -- cgit v1.2.1