rename tab elements namespace

This commit is contained in:
yggverse 2024-08-15 18:52:11 +03:00
parent 4e733d8997
commit 2986a475c1
29 changed files with 181 additions and 181 deletions

View file

@ -1,35 +0,0 @@
#ifndef APP_BROWSER_MAIN_TAB_DATA_HPP
#define APP_BROWSER_MAIN_TAB_DATA_HPP
#include <giomm/simpleactiongroup.h>
#include <glibmm/refptr.h>
#include <gtkmm/box.h>
#include <sigc++/functors/mem_fun.h>
namespace app::browser::main::tab
{
namespace data
{
class Navbar;
class Content;
}
class Data : public Gtk::Box
{
private:
Glib::RefPtr<Gio::SimpleActionGroup> action_group;
data::Navbar * navbar;
data::Content * content;
public:
Data();
~Data();
void update();
};
}
#endif // APP_BROWSER_MAIN_TAB_DATA_HPP