mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 00:55:28 +00:00
rename methods
This commit is contained in:
parent
207d5079a7
commit
f834d783ef
9 changed files with 37 additions and 52 deletions
|
|
@ -83,6 +83,23 @@ Browser::Browser(
|
|||
}
|
||||
);
|
||||
|
||||
// History
|
||||
add_action(
|
||||
"main_tab_page_navigation_history_back",
|
||||
[this]
|
||||
{
|
||||
browserMain->tab_page_navigation_history_back();
|
||||
}
|
||||
);
|
||||
|
||||
add_action(
|
||||
"main_tab_page_navigation_history_forward",
|
||||
[this]
|
||||
{
|
||||
browserMain->tab_page_navigation_history_forward();
|
||||
}
|
||||
);
|
||||
|
||||
// Tool
|
||||
add_action(
|
||||
"debug",
|
||||
|
|
@ -111,20 +128,4 @@ Browser::Browser(
|
|||
);
|
||||
}
|
||||
);
|
||||
|
||||
add_action(
|
||||
"tab_history_back", // @TODO rename
|
||||
[this]
|
||||
{
|
||||
browserMain->tab_history_back();
|
||||
}
|
||||
);
|
||||
|
||||
add_action(
|
||||
"tab_history_forward", // @TODO rename
|
||||
[this]
|
||||
{
|
||||
browserMain->tab_history_forward();
|
||||
}
|
||||
);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue