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 | f514dcc9e339cbffa42fcc4e1381f18205e301b5 (patch) | |
tree | 298053cc51e8bd0dc4ab5d99cbc2cfad6decc6bd /src/Patchage.hpp | |
parent | 09ebe1211eeb0c849fcaa60497d60323640fff5d (diff) | |
download | patchage-f514dcc9e339cbffa42fcc4e1381f18205e301b5.tar.gz patchage-f514dcc9e339cbffa42fcc4e1381f18205e301b5.tar.bz2 patchage-f514dcc9e339cbffa42fcc4e1381f18205e301b5.zip |
Remove dependency on glade and glademm (migrate to GtkBuilder).
git-svn-id: http://svn.drobilla.net/lad/trunk/patchage@3295 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/Patchage.hpp')
-rw-r--r-- | src/Patchage.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Patchage.hpp b/src/Patchage.hpp index 6e2c0db..0c61d0d 100644 --- a/src/Patchage.hpp +++ b/src/Patchage.hpp @@ -22,7 +22,7 @@ #include <string> #include <boost/shared_ptr.hpp> -#include <libglademm/xml.h> +#include <gtkmm.h> #include <libgnomecanvasmm.h> #include "patchage-config.h" @@ -64,7 +64,7 @@ public: void set_lash_available(bool available); #endif - Glib::RefPtr<Gnome::Glade::Xml> xml() { return _xml; } + Glib::RefPtr<Gtk::Builder> xml() { return _xml; } void attach(); void quit() { _main_win->hide(); } @@ -109,7 +109,7 @@ protected: void buffer_size_changed(); - Glib::RefPtr<Gnome::Glade::Xml> _xml; + Glib::RefPtr<Gtk::Builder> _xml; #if defined(HAVE_LASH) || defined(HAVE_JACK_DBUS) DBus* _dbus; |