remove extra arguments

This commit is contained in:
yggverse 2024-09-09 22:23:23 +03:00
parent 7a522cb1e1
commit 618d8bd530
3 changed files with 17 additions and 27 deletions

View file

@ -68,12 +68,17 @@ Tab::Tab(
{
while (sqlite3_step(statement) == SQLITE_ROW)
{
append(
::sqlite3_column_text(
statement,
DB::APP_BROWSER_MAIN_TAB::REQUEST
),
true
const int PAGE_NUMBER = append();
/* @TODO set request
::sqlite3_column_text(
statement,
DB::APP_BROWSER_MAIN_TAB::REQUEST
);
*/
set_current_page(
PAGE_NUMBER
);
}
}
@ -167,10 +172,8 @@ void Tab::refresh(
);
}
int Tab::append(
const unsigned char * REQUEST,
const bool & FOCUS
) {
int Tab::append()
{
const auto TAB_PAGE = new tab::Page(
action__refresh,
action__tab_page_navigation_history_back,
@ -192,13 +195,6 @@ int Tab::append(
REORDERABLE
);
if (FOCUS)
{
set_current_page(
PAGE_NUMBER
);
}
return PAGE_NUMBER;
};