remove extra access level definition

This commit is contained in:
yggverse 2024-08-17 00:50:24 +03:00
parent 5fff73f17b
commit 09542c5134
12 changed files with 50 additions and 74 deletions

View file

@ -19,8 +19,6 @@ namespace app
class Browser : public Gtk::ApplicationWindow
{
private:
app::browser::Header * header;
app::browser::Main * main;

View file

@ -13,8 +13,6 @@ namespace app::browser
class Header : public Gtk::HeaderBar
{
private:
app::browser::header::Menu * menu;
app::browser::header::Tab * tab;

View file

@ -9,8 +9,6 @@ namespace app::browser::header
{
class Menu : public Gtk::MenuButton
{
private:
Glib::RefPtr<Gio::Menu> tab,
tab_close,
tool,

View file

@ -12,8 +12,6 @@ namespace app::browser
class Main : public Gtk::Box
{
private:
app::browser::main::Tab * tab;
public:

View file

@ -9,8 +9,6 @@ namespace app::browser::main
{
class Tab : public Gtk::Notebook
{
private:
void on_switch(
Gtk::Widget * page,
guint page_num

View file

@ -10,8 +10,6 @@ namespace app::browser::main::tab
{
class Label : public Gtk::Label
{
private:
Glib::RefPtr<Gtk::GestureClick> controller;
void on_click(

View file

@ -22,8 +22,6 @@ namespace app::browser::main::tab
class Page : public Gtk::Box
{
private:
char buffer[0xfffff];
Glib::RefPtr<Gio::SimpleActionGroup> action_group;

View file

@ -20,8 +20,6 @@ namespace app::browser::main::tab::page
class Navbar : public Gtk::Box
{
private:
// Actions
Glib::RefPtr<Gio::SimpleActionGroup> action_group;

View file

@ -14,8 +14,6 @@ namespace app::browser::main::tab::page::navbar
class History : public Gtk::Box
{
private:
history::Back * back;
history::Forward * forward;

View file

@ -11,8 +11,6 @@ namespace app::browser::main::tab::page::navbar
{
class Request : public Gtk::Entry
{
private:
std::string scheme,
host,
port,

View file

@ -12,8 +12,6 @@ namespace lib
class Database
{
private:
int status;
char * error;

View file

@ -7,8 +7,6 @@ namespace lib::database
{
class Session
{
private:
int status;
char * error;