mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 17:15:28 +00:00
unify method names with gtkmm style
This commit is contained in:
parent
c7a67e4afd
commit
fabd0f147e
4 changed files with 6 additions and 6 deletions
|
|
@ -37,7 +37,7 @@ Browser::Browser(
|
||||||
"tab_append",
|
"tab_append",
|
||||||
sigc::mem_fun(
|
sigc::mem_fun(
|
||||||
* this,
|
* this,
|
||||||
& Browser::mainTabAppend
|
& Browser::main_tab_append
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
@ -61,9 +61,9 @@ Browser::~Browser()
|
||||||
main = nullptr;
|
main = nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
void Browser::mainTabAppend()
|
void Browser::main_tab_append()
|
||||||
{
|
{
|
||||||
main->tabAppend();
|
main->tab_append();
|
||||||
};
|
};
|
||||||
|
|
||||||
void Browser::debug()
|
void Browser::debug()
|
||||||
|
|
|
||||||
|
|
@ -37,7 +37,7 @@ namespace app
|
||||||
|
|
||||||
~Browser();
|
~Browser();
|
||||||
|
|
||||||
void mainTabAppend();
|
void main_tab_append();
|
||||||
|
|
||||||
void debug();
|
void debug();
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,7 @@ Main::~Main()
|
||||||
tab = nullptr;
|
tab = nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
void Main::tabAppend()
|
void Main::tab_append()
|
||||||
{
|
{
|
||||||
tab->append(
|
tab->append(
|
||||||
nullptr,
|
nullptr,
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,7 @@ namespace app::browser
|
||||||
|
|
||||||
~Main();
|
~Main();
|
||||||
|
|
||||||
void tabAppend();
|
void tab_append();
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue