diff options
author | David Robillard <d@drobilla.net> | 2009-11-16 04:08:14 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2009-11-16 04:08:14 +0000 |
commit | 4ae2cca91a7482d23837f27b4c5130b0dbde98f3 (patch) | |
tree | bf5182fdae8d4dc0aefeb685371643acb8bb128a /src/gui/PatchTreeWindow.hpp | |
parent | 720dc98574c6ec13f3d9c61d67a7144cb8200a2c (diff) | |
download | ingen-4ae2cca91a7482d23837f27b4c5130b0dbde98f3.tar.gz ingen-4ae2cca91a7482d23837f27b4c5130b0dbde98f3.tar.bz2 ingen-4ae2cca91a7482d23837f27b4c5130b0dbde98f3.zip |
Make all windows respond to ctrl+w.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2269 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/gui/PatchTreeWindow.hpp')
-rw-r--r-- | src/gui/PatchTreeWindow.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/PatchTreeWindow.hpp b/src/gui/PatchTreeWindow.hpp index 0a71309c..bba3b1ac 100644 --- a/src/gui/PatchTreeWindow.hpp +++ b/src/gui/PatchTreeWindow.hpp @@ -20,6 +20,7 @@ #include <gtkmm.h> #include <libglademm.h> +#include "Window.hpp" namespace Raul { class Path; } @@ -37,7 +38,7 @@ class PatchTreeView; * * \ingroup GUI */ -class PatchTreeWindow : public Gtk::Window +class PatchTreeWindow : public Window { public: PatchTreeWindow(BaseObjectType* cobject, const Glib::RefPtr<Gnome::Glade::Xml>& refGlade); @@ -54,7 +55,6 @@ public: void show_patch_menu(GdkEventButton* ev); protected: - //void event_patch_selected(); void event_patch_activated(const Gtk::TreeModel::Path& path, Gtk::TreeView::Column* col); void event_patch_enabled_toggled(const Glib::ustring& path_str); |