Browse Source

reorder methods

CPP-GTK4
yggverse 3 months ago
parent
commit
cb537dddd2
  1. 34
      src/app/browser/main/tab.cpp

34
src/app/browser/main/tab.cpp

@ -107,22 +107,6 @@ void Tab::close_all() @@ -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( @@ -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
Loading…
Cancel
Save