fix access level

This commit is contained in:
yggverse 2024-08-08 14:43:29 +03:00
parent 1d4c640def
commit 95647f42c2

View File

@ -28,16 +28,20 @@ namespace app
class Menu : public Gtk::MenuButton
{
const Glib::ustring TOOLTIP = "Menu";
public:
Menu();
const Glib::ustring TOOLTIP = "Menu";
Menu();
};
class Tab : public Gtk::MenuButton
{
const Glib::ustring TOOLTIP = "New tab";
public:
Tab();
const Glib::ustring TOOLTIP = "New tab";
Tab();
};
};