remove destructors overwrite

This commit is contained in:
yggverse 2024-09-05 01:40:56 +03:00
parent 1ec685cabe
commit 207d5079a7
18 changed files with 6 additions and 42 deletions

View File

@ -27,8 +27,6 @@ Subtitle::Subtitle()
hide(); hide();
} }
Subtitle::~Subtitle() = default;
void Subtitle::set( void Subtitle::set(
const Glib::ustring & TEXT const Glib::ustring & TEXT
) { ) {

View File

@ -16,8 +16,6 @@ namespace app::browser::header::main
Subtitle(); Subtitle();
~Subtitle();
void set( void set(
const Glib::ustring & TEXT const Glib::ustring & TEXT
); );

View File

@ -29,8 +29,6 @@ Title::Title()
); );
} }
Title::~Title() = default;
void Title::set( void Title::set(
const Glib::ustring & TEXT const Glib::ustring & TEXT
) { ) {

View File

@ -18,8 +18,6 @@ namespace app::browser::header::main
Title(); Title();
~Title();
void set( void set(
const Glib::ustring & TEXT const Glib::ustring & TEXT
); );

View File

@ -32,6 +32,4 @@ Label::Label(
add_controller( add_controller(
GtkGestureClick GtkGestureClick
); );
} }
Label::~Label() = default;

View File

@ -16,8 +16,6 @@ namespace app::browser::main::tab
Label( Label(
const Glib::ustring & TEXT const Glib::ustring & TEXT
); );
~Label();
}; };
} }

View File

@ -16,6 +16,4 @@ Gemini::Gemini(
set_markup( set_markup(
gemtext // @TODO gemtext // @TODO
); );
} }
Gemini::~Gemini() = default;

View File

@ -13,8 +13,6 @@ namespace app::browser::main::tab::page::content::text
Gemini( Gemini(
const Glib::ustring & gemtext const Glib::ustring & gemtext
); );
~Gemini();
}; };
} }

View File

@ -16,6 +16,4 @@ Plain::Plain(
set_text( set_text(
text text
); );
} }
Plain::~Plain() = default;

View File

@ -13,8 +13,6 @@ namespace app::browser::main::tab::page::content::text
Plain( Plain(
const Glib::ustring & text const Glib::ustring & text
); );
~Plain();
}; };
} }

View File

@ -15,6 +15,4 @@ Base::Base()
set_tooltip_text( set_tooltip_text(
_("Base") _("Base")
); );
} }
Base::~Base() = default;

View File

@ -11,8 +11,6 @@ namespace app::browser::main::tab::page::navigation
public: public:
Base(); Base();
~Base();
}; };
} }

View File

@ -15,6 +15,4 @@ Bookmark::Bookmark()
set_tooltip_text( set_tooltip_text(
_("Toggle bookmark") _("Toggle bookmark")
); );
} }
Bookmark::~Bookmark() = default;

View File

@ -11,8 +11,6 @@ namespace app::browser::main::tab::page::navigation
public: public:
Bookmark(); Bookmark();
~Bookmark();
}; };
} }

View File

@ -29,5 +29,3 @@ Back::Back()
} }
); );
} }
Back::~Back() = default;

View File

@ -11,8 +11,6 @@ namespace app::browser::main::tab::page::navigation::history
public: public:
Back(); Back();
~Back();
}; };
} }

View File

@ -28,6 +28,4 @@ Forward::Forward()
); );
} }
); );
} }
Forward::~Forward() = default;

View File

@ -11,8 +11,6 @@ namespace app::browser::main::tab::page::navigation::history
public: public:
Forward(); Forward();
~Forward();
}; };
} }