summaryrefslogtreecommitdiffstats
path: root/src/gui/MessagesWindow.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-11-16 04:08:14 +0000
committerDavid Robillard <d@drobilla.net>2009-11-16 04:08:14 +0000
commit4ae2cca91a7482d23837f27b4c5130b0dbde98f3 (patch)
treebf5182fdae8d4dc0aefeb685371643acb8bb128a /src/gui/MessagesWindow.hpp
parent720dc98574c6ec13f3d9c61d67a7144cb8200a2c (diff)
downloadingen-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/MessagesWindow.hpp')
-rw-r--r--src/gui/MessagesWindow.hpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/gui/MessagesWindow.hpp b/src/gui/MessagesWindow.hpp
index 95818e2b..4c5d3e1e 100644
--- a/src/gui/MessagesWindow.hpp
+++ b/src/gui/MessagesWindow.hpp
@@ -21,8 +21,7 @@
#include <string>
#include <gtkmm.h>
#include <libglademm/xml.h>
-using std::string;
-
+#include "Window.hpp"
namespace Ingen {
namespace GUI {
@@ -35,12 +34,12 @@ namespace GUI {
*
* \ingroup GUI
*/
-class MessagesWindow : public Gtk::Window
+class MessagesWindow : public Window
{
public:
MessagesWindow(BaseObjectType* cobject, const Glib::RefPtr<Gnome::Glade::Xml>& refGlade);
- void post(const string& str);
+ void post(const std::string& str);
private:
void clear_clicked();