mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 17:15:28 +00:00
rename tab elements namespace
This commit is contained in:
parent
4e733d8997
commit
2986a475c1
29 changed files with 181 additions and 181 deletions
26
src/app/browser/main/tab/page/navbar/history.cpp
Normal file
26
src/app/browser/main/tab/page/navbar/history.cpp
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
#include "history.hpp"
|
||||
#include "history/back.hpp"
|
||||
#include "history/forward.hpp"
|
||||
|
||||
using namespace app::browser::main::tab::page::navbar;
|
||||
|
||||
History::History()
|
||||
{
|
||||
add_css_class(
|
||||
"linked" // merge children elements
|
||||
);
|
||||
|
||||
back = new history::Back();
|
||||
|
||||
append(
|
||||
* back
|
||||
);
|
||||
|
||||
forward = new history::Forward();
|
||||
|
||||
append(
|
||||
* forward
|
||||
);
|
||||
}
|
||||
|
||||
History::~History() = default;
|
||||
Loading…
Add table
Add a link
Reference in a new issue