reorder methods

This commit is contained in:
yggverse 2024-08-27 15:14:48 +03:00
parent df8f249f1c
commit cb537dddd2

View File

@ -107,22 +107,6 @@ void Tab::close_all()
}
}
void Tab::update(
const int & PAGE_NUMBER
) {
auto pageWidget = get_nth_page(
PAGE_NUMBER
);
if (pageWidget != nullptr)
{
pageWidget->activate_action(
"page.update"
);
}
} // @TODO
void Tab::refresh(
const int & PAGE_NUMBER
) {
@ -154,4 +138,20 @@ void Tab::refresh(
// Refresh children widgets
tabPage->refresh();
}
}
void Tab::update(
const int & PAGE_NUMBER
) {
auto pageWidget = get_nth_page(
PAGE_NUMBER
);
if (pageWidget != nullptr)
{
pageWidget->activate_action(
"page.update"
);
}
} // @TODO