diff options
author | David Robillard <d@drobilla.net> | 2011-05-20 03:27:08 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-05-20 03:27:08 +0000 |
commit | 4999a7199470ee751d710cfca2a39b4fdc561a82 (patch) | |
tree | 9c3d83689ec89037c3ba22f3f5940857513ae189 /src/gui/ConnectWindow.hpp | |
parent | b5bbad8f77e65f8fc8655287f0d2004ebee7c787 (diff) | |
download | ingen-4999a7199470ee751d710cfca2a39b4fdc561a82.tar.gz ingen-4999a7199470ee751d710cfca2a39b4fdc561a82.tar.bz2 ingen-4999a7199470ee751d710cfca2a39b4fdc561a82.zip |
Remove dependency on glade and glademm (migrate to GtkBuilder).
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3295 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/gui/ConnectWindow.hpp')
-rw-r--r-- | src/gui/ConnectWindow.hpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/gui/ConnectWindow.hpp b/src/gui/ConnectWindow.hpp index 92f29f16..44d4c925 100644 --- a/src/gui/ConnectWindow.hpp +++ b/src/gui/ConnectWindow.hpp @@ -25,8 +25,6 @@ #endif #include <gtkmm.h> -#include <libglademm/xml.h> -#include <libglademm.h> #include "raul/SharedPtr.hpp" @@ -47,7 +45,8 @@ class App; class ConnectWindow : public Dialog { public: - ConnectWindow(BaseObjectType* cobject, const Glib::RefPtr<Gnome::Glade::Xml>& xml); + ConnectWindow(BaseObjectType* cobject, + const Glib::RefPtr<Gtk::Builder>& xml); void set_connected_to(SharedPtr<ServerInterface> engine); void start(Ingen::Shared::World* world); @@ -77,7 +76,7 @@ private: bool gtk_callback(); void quit(); - const Glib::RefPtr<Gnome::Glade::Xml> _xml; + const Glib::RefPtr<Gtk::Builder> _xml; Mode _mode; int32_t _ping_id; |