enshort const name

This commit is contained in:
yggverse 2024-08-27 14:22:59 +03:00
parent 8ad13b2aa2
commit a55dce8008
2 changed files with 3 additions and 3 deletions

View File

@ -51,7 +51,7 @@ Glib::ustring Tab::get_label_text(
void Tab::append( void Tab::append(
const Glib::ustring & TITLE, const Glib::ustring & TITLE,
const Glib::ustring & REQUEST, const Glib::ustring & REQUEST,
const bool & TAB_FOCUS const bool & FOCUS
) { ) {
auto tabPage = new tab::Page( auto tabPage = new tab::Page(
TITLE, TITLE,
@ -70,7 +70,7 @@ void Tab::append(
REORDERABLE REORDERABLE
); );
if (TAB_FOCUS) if (FOCUS)
{ {
set_current_page( set_current_page(
page_number page_number

View File

@ -25,7 +25,7 @@ namespace app::browser::main
void append( void append(
const Glib::ustring & TITLE, const Glib::ustring & TITLE,
const Glib::ustring & REQUEST = "", const Glib::ustring & REQUEST = "",
const bool & TAB_FOCUS = true const bool & FOCUS = true
); );
void close( void close(