summaryrefslogtreecommitdiffstats
path: root/src/Widget.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Widget.hpp')
-rw-r--r--src/Widget.hpp6
1 files changed, 3 insertions, 3 deletions
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 <string>
#include <boost/utility.hpp>
-#include <libglademm/xml.h>
+#include <gtkmm.h>
template <typename W>
class Widget : public boost::noncopyable {
public:
- Widget(Glib::RefPtr<Gnome::Glade::Xml> xml, const std::string& name) {
- xml->get_widget(name.c_str(), _me);
+ Widget(Glib::RefPtr<Gtk::Builder> xml, const std::string& name) {
+ xml->get_widget(name, _me);
}
void destroy() { delete _me; }