mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 09:05:27 +00:00
update methods namespace
This commit is contained in:
parent
f834d783ef
commit
c77bfbbc7b
11 changed files with 60 additions and 35 deletions
|
|
@ -87,7 +87,7 @@ Navigation::Navigation(
|
|||
}
|
||||
|
||||
// Actions
|
||||
void Navigation::history_back()
|
||||
bool Navigation::history_try_back()
|
||||
{
|
||||
navigation::History::Memory match;
|
||||
|
||||
|
|
@ -98,10 +98,14 @@ void Navigation::history_back()
|
|||
);
|
||||
|
||||
navigationUpdate->activate();
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
void Navigation::history_forward()
|
||||
bool Navigation::history_try_forward()
|
||||
{
|
||||
navigation::History::Memory match;
|
||||
|
||||
|
|
@ -112,7 +116,11 @@ void Navigation::history_forward()
|
|||
);
|
||||
|
||||
navigationUpdate->activate();
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
void Navigation::history_add(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue