unify method names with gtkmm style

This commit is contained in:
yggverse 2024-08-12 18:16:27 +03:00
parent c7a67e4afd
commit fabd0f147e
4 changed files with 6 additions and 6 deletions

View file

@ -37,7 +37,7 @@ Browser::Browser(
"tab_append",
sigc::mem_fun(
* this,
& Browser::mainTabAppend
& Browser::main_tab_append
)
);
@ -61,9 +61,9 @@ Browser::~Browser()
main = nullptr;
}
void Browser::mainTabAppend()
void Browser::main_tab_append()
{
main->tabAppend();
main->tab_append();
};
void Browser::debug()