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

@ -33,7 +33,7 @@ Main::~Main()
tab = nullptr;
}
void Main::tabAppend()
void Main::tab_append()
{
tab->append(
nullptr,

View file

@ -22,7 +22,7 @@ namespace app::browser
~Main();
void tabAppend();
void tab_append();
};
}