summaryrefslogtreecommitdiffstats
path: root/src/Widget.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-06-07 03:34:19 +0000
committerDavid Robillard <d@drobilla.net>2011-06-07 03:34:19 +0000
commit07f12de4656cfa2c835637d5d3c657ac0f0ddaf2 (patch)
tree6d56c3b46fd9f48bd21e4925d82cbf83c482b58e /src/Widget.hpp
parent00f2ad0069fe4e51e40e6a3b3d41f125b67f89cf (diff)
downloadpatchage-07f12de4656cfa2c835637d5d3c657ac0f0ddaf2.tar.gz
patchage-07f12de4656cfa2c835637d5d3c657ac0f0ddaf2.tar.bz2
patchage-07f12de4656cfa2c835637d5d3c657ac0f0ddaf2.zip
Avoid including gtkmm.h (which brings several megs of header into the compilation).
git-svn-id: http://svn.drobilla.net/lad/trunk/patchage@3367 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/Widget.hpp')
-rw-r--r--src/Widget.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Widget.hpp b/src/Widget.hpp
index b0cf314..0f688c4 100644
--- a/src/Widget.hpp
+++ b/src/Widget.hpp
@@ -21,7 +21,8 @@
#include <string>
#include <boost/utility.hpp>
-#include <gtkmm.h>
+
+#include <gtkmm/builder.h>
template <typename W>
class Widget : public boost::noncopyable {