change namespace

This commit is contained in:
yggverse 2024-08-29 04:17:35 +03:00
parent 259a33423e
commit aa3565cd4f
2 changed files with 10 additions and 10 deletions

View File

@ -10,23 +10,23 @@ History::History()
"linked" // merge children elements "linked" // merge children elements
); );
back = new history::Back(); historyBack = new history::Back();
append( append(
* back * historyBack
); );
forward = new history::Forward(); historyForward = new history::Forward();
append( append(
* forward * historyForward
); );
} }
History::~History() History::~History()
{ {
delete back; delete historyBack;
delete forward; delete historyForward;
}; };
// Actions // Actions
@ -38,11 +38,11 @@ void History::push(
void History::refresh() void History::refresh()
{ {
back->set_sensitive( historyBack->set_sensitive(
false // @TODO false // @TODO
); );
forward->set_sensitive( historyForward->set_sensitive(
false // @TODO false // @TODO
); );
} }

View File

@ -21,8 +21,8 @@ namespace app::browser::main::tab::page::navbar
std::vector<Glib::ustring>::iterator index; std::vector<Glib::ustring>::iterator index;
// Components // Components
history::Back * back; history::Back * historyBack;
history::Forward * forward; history::Forward * historyForward;
public: public: