mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-02 17:45:28 +00:00
remove extra access level definition
This commit is contained in:
parent
5fff73f17b
commit
09542c5134
12 changed files with 50 additions and 74 deletions
|
|
@ -19,8 +19,6 @@ namespace app
|
|||
|
||||
class Browser : public Gtk::ApplicationWindow
|
||||
{
|
||||
private:
|
||||
|
||||
app::browser::Header * header;
|
||||
app::browser::Main * main;
|
||||
|
||||
|
|
|
|||
|
|
@ -13,8 +13,6 @@ namespace app::browser
|
|||
|
||||
class Header : public Gtk::HeaderBar
|
||||
{
|
||||
private:
|
||||
|
||||
app::browser::header::Menu * menu;
|
||||
app::browser::header::Tab * tab;
|
||||
|
||||
|
|
|
|||
|
|
@ -9,8 +9,6 @@ namespace app::browser::header
|
|||
{
|
||||
class Menu : public Gtk::MenuButton
|
||||
{
|
||||
private:
|
||||
|
||||
Glib::RefPtr<Gio::Menu> tab,
|
||||
tab_close,
|
||||
tool,
|
||||
|
|
|
|||
|
|
@ -12,8 +12,6 @@ namespace app::browser
|
|||
|
||||
class Main : public Gtk::Box
|
||||
{
|
||||
private:
|
||||
|
||||
app::browser::main::Tab * tab;
|
||||
|
||||
public:
|
||||
|
|
|
|||
|
|
@ -9,8 +9,6 @@ namespace app::browser::main
|
|||
{
|
||||
class Tab : public Gtk::Notebook
|
||||
{
|
||||
private:
|
||||
|
||||
void on_switch(
|
||||
Gtk::Widget * page,
|
||||
guint page_num
|
||||
|
|
|
|||
|
|
@ -10,8 +10,6 @@ namespace app::browser::main::tab
|
|||
{
|
||||
class Label : public Gtk::Label
|
||||
{
|
||||
private:
|
||||
|
||||
Glib::RefPtr<Gtk::GestureClick> controller;
|
||||
|
||||
void on_click(
|
||||
|
|
|
|||
|
|
@ -22,8 +22,6 @@ namespace app::browser::main::tab
|
|||
|
||||
class Page : public Gtk::Box
|
||||
{
|
||||
private:
|
||||
|
||||
char buffer[0xfffff];
|
||||
|
||||
Glib::RefPtr<Gio::SimpleActionGroup> action_group;
|
||||
|
|
|
|||
|
|
@ -20,8 +20,6 @@ namespace app::browser::main::tab::page
|
|||
|
||||
class Navbar : public Gtk::Box
|
||||
{
|
||||
private:
|
||||
|
||||
// Actions
|
||||
Glib::RefPtr<Gio::SimpleActionGroup> action_group;
|
||||
|
||||
|
|
|
|||
|
|
@ -14,8 +14,6 @@ namespace app::browser::main::tab::page::navbar
|
|||
|
||||
class History : public Gtk::Box
|
||||
{
|
||||
private:
|
||||
|
||||
history::Back * back;
|
||||
history::Forward * forward;
|
||||
|
||||
|
|
|
|||
|
|
@ -11,8 +11,6 @@ namespace app::browser::main::tab::page::navbar
|
|||
{
|
||||
class Request : public Gtk::Entry
|
||||
{
|
||||
private:
|
||||
|
||||
std::string scheme,
|
||||
host,
|
||||
port,
|
||||
|
|
|
|||
|
|
@ -12,8 +12,6 @@ namespace lib
|
|||
|
||||
class Database
|
||||
{
|
||||
private:
|
||||
|
||||
int status;
|
||||
|
||||
char * error;
|
||||
|
|
|
|||
|
|
@ -7,8 +7,6 @@ namespace lib::database
|
|||
{
|
||||
class Session
|
||||
{
|
||||
private:
|
||||
|
||||
int status;
|
||||
|
||||
char * error;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue