Remove ambiguity ('CheckMenuItem' conflicts with an item already existing in MSVC)
authorJohn Emmas <johne53@tiscali.co.uk>
Thu, 29 Jun 2017 09:08:32 +0000 (10:08 +0100)
committerJohn Emmas <johne53@tiscali.co.uk>
Thu, 29 Jun 2017 09:08:32 +0000 (10:08 +0100)
libs/gtkmm2ext/menu_elems.cc

index 5de5ac9b590f61ad913f6baae472942e94d9e084..e2141063467016bba59896671ed7e3d942603164 100644 (file)
@@ -35,7 +35,7 @@ MenuElemNoMnemonic::MenuElemNoMnemonic (const Glib::ustring& label, const CallSl
 
 CheckMenuElemNoMnemonic::CheckMenuElemNoMnemonic (const Glib::ustring& label, const CallSlot& slot)
 {
-       CheckMenuItem* item = manage (new CheckMenuItem (label, false));
+       Gtk::CheckMenuItem* item = manage (new Gtk::CheckMenuItem (label, false));
        set_child (item);
        if(slot) {
                item->signal_toggled().connect(slot);