From f514dcc9e339cbffa42fcc4e1381f18205e301b5 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 20 May 2011 03:27:08 +0000 Subject: 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 --- src/Widget.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/Widget.hpp') diff --git a/src/Widget.hpp b/src/Widget.hpp index 1a80593..b0cf314 100644 --- a/src/Widget.hpp +++ b/src/Widget.hpp @@ -21,13 +21,13 @@ #include #include -#include +#include template class Widget : public boost::noncopyable { public: - Widget(Glib::RefPtr xml, const std::string& name) { - xml->get_widget(name.c_str(), _me); + Widget(Glib::RefPtr xml, const std::string& name) { + xml->get_widget(name, _me); } void destroy() { delete _me; } -- cgit v1.2.1