summaryrefslogtreecommitdiff
path: root/mtxwindow.cc
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2017-01-23 18:44:16 +0100
committerRichard Braun <rbraun@sceen.net>2017-01-23 18:44:16 +0100
commitd6d8afda9e32501063cee907b20507d4762a3bc0 (patch)
treeb7ce0e4ebb80318279f3e59d6ea8252d81743d55 /mtxwindow.cc
parent0335271456550084988c5484bd1109a0a846669b (diff)
Minor updateHEADmaster
- Fix errors with modern compilers (gcc, clang) - Upgrade gtkmm dependency - Add a test.mtx file - Build with 64-bits words by default
Diffstat (limited to 'mtxwindow.cc')
-rw-r--r--mtxwindow.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/mtxwindow.cc b/mtxwindow.cc
index 6ecca97..3ddf0ac 100644
--- a/mtxwindow.cc
+++ b/mtxwindow.cc
@@ -42,7 +42,7 @@ entry(language, this)
resize(750, 500);
move(100, 75);
menu_help.items().push_back(Gtk::Menu_Helpers::MenuElem("_About",
- SigC::slot(*this, &MtxWindow::on_menu_help_about)));
+ sigc::mem_fun(*this, &MtxWindow::on_menu_help_about)));
menu_bar.items().push_back(Gtk::Menu_Helpers::MenuElem("_Help", menu_help));
vbox.pack_start(menu_bar, Gtk::PACK_SHRINK);
buffer = text_view.get_buffer();