summaryrefslogtreecommitdiffstats
path: root/src/Gui/Window.cpp
diff options
context:
space:
mode:
authorneoraider <devnull@localhost>2008-04-06 16:11:00 +0200
committerneoraider <devnull@localhost>2008-04-06 16:11:00 +0200
commitcbc867ee44137b24e2549271499a9d211cd6b000 (patch)
tree9ccfa703082acd0bbe4df3e4b0a57b89e810a968 /src/Gui/Window.cpp
parent356efaf89afdad141b313767e1a2b89de3c08d0a (diff)
downloadzoomedit-cbc867ee44137b24e2549271499a9d211cd6b000.tar
zoomedit-cbc867ee44137b24e2549271499a9d211cd6b000.zip
zoomedit: Moved source to extra dir.
Diffstat (limited to 'src/Gui/Window.cpp')
-rw-r--r--src/Gui/Window.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/Gui/Window.cpp b/src/Gui/Window.cpp
new file mode 100644
index 0000000..a90a460
--- /dev/null
+++ b/src/Gui/Window.cpp
@@ -0,0 +1,15 @@
+#include "Window.h"
+
+namespace ZoomEdit {
+namespace Gui {
+
+Window::Window(BaseObjectType *cobject, const Glib::RefPtr<Gnome::Glade::Xml> &xml)
+: Gtk::Window(cobject) {
+ xml->connect_clicked("MenuItemQuit", sigc::mem_fun(this, &Window::hide));
+}
+
+Window::~Window() {
+}
+
+}
+}