mirror of
https://github.com/YGGverse/Yoda.git
synced 2025-03-12 13:41:34 +00:00
update const name
This commit is contained in:
parent
ab0c28badf
commit
d7de166ef0
@ -89,11 +89,11 @@ Navigation::Navigation(
|
|||||||
// Actions
|
// Actions
|
||||||
void Navigation::history_add(
|
void Navigation::history_add(
|
||||||
const Glib::ustring & REQUEST,
|
const Glib::ustring & REQUEST,
|
||||||
const bool & FOLLOW
|
const bool & UPDATE_MEMORY_INDEX
|
||||||
) {
|
) {
|
||||||
navigationHistory->add(
|
navigationHistory->add(
|
||||||
REQUEST,
|
REQUEST,
|
||||||
FOLLOW
|
UPDATE_MEMORY_INDEX
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -158,11 +158,11 @@ Glib::ustring Navigation::get_request_port()
|
|||||||
// Actionable getters
|
// Actionable getters
|
||||||
bool Navigation::try_history_back(
|
bool Navigation::try_history_back(
|
||||||
Glib::ustring & request,
|
Glib::ustring & request,
|
||||||
const bool & FOLLOW
|
const bool & UPDATE_MEMORY_INDEX
|
||||||
) {
|
) {
|
||||||
navigation::History::Memory match;
|
navigation::History::Memory match;
|
||||||
|
|
||||||
if (navigationHistory->try_back(match, FOLLOW))
|
if (navigationHistory->try_back(match, UPDATE_MEMORY_INDEX))
|
||||||
{
|
{
|
||||||
request = match.request;
|
request = match.request;
|
||||||
|
|
||||||
@ -174,11 +174,11 @@ bool Navigation::try_history_back(
|
|||||||
|
|
||||||
bool Navigation::try_history_forward(
|
bool Navigation::try_history_forward(
|
||||||
Glib::ustring & request,
|
Glib::ustring & request,
|
||||||
const bool & FOLLOW
|
const bool & UPDATE_MEMORY_INDEX
|
||||||
) {
|
) {
|
||||||
navigation::History::Memory match;
|
navigation::History::Memory match;
|
||||||
|
|
||||||
if (navigationHistory->try_forward(match, FOLLOW))
|
if (navigationHistory->try_forward(match, UPDATE_MEMORY_INDEX))
|
||||||
{
|
{
|
||||||
request = match.request;
|
request = match.request;
|
||||||
|
|
||||||
|
@ -39,7 +39,7 @@ namespace app::browser::main::tab::page
|
|||||||
// Actions
|
// Actions
|
||||||
void history_add(
|
void history_add(
|
||||||
const Glib::ustring & REQUEST,
|
const Glib::ustring & REQUEST,
|
||||||
const bool & FOLLOW
|
const bool & UPDATE_MEMORY_INDEX
|
||||||
);
|
);
|
||||||
|
|
||||||
void refresh();
|
void refresh();
|
||||||
@ -61,12 +61,12 @@ namespace app::browser::main::tab::page
|
|||||||
// Actionable getters
|
// Actionable getters
|
||||||
bool try_history_back(
|
bool try_history_back(
|
||||||
Glib::ustring & request,
|
Glib::ustring & request,
|
||||||
const bool & FOLLOW
|
const bool & UPDATE_MEMORY_INDEX
|
||||||
);
|
);
|
||||||
|
|
||||||
bool try_history_forward(
|
bool try_history_forward(
|
||||||
Glib::ustring & request,
|
Glib::ustring & request,
|
||||||
const bool & FOLLOW
|
const bool & UPDATE_MEMORY_INDEX
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -26,7 +26,7 @@ History::History()
|
|||||||
// Actions
|
// Actions
|
||||||
void History::add(
|
void History::add(
|
||||||
const Glib::ustring & REQUEST,
|
const Glib::ustring & REQUEST,
|
||||||
const bool & FOLLOW
|
const bool & UPDATE_MEMORY_INDEX
|
||||||
) {
|
) {
|
||||||
memory.push_back(
|
memory.push_back(
|
||||||
{
|
{
|
||||||
@ -38,7 +38,7 @@ void History::add(
|
|||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
if (FOLLOW)
|
if (UPDATE_MEMORY_INDEX)
|
||||||
{
|
{
|
||||||
index = memory.size() - 1;
|
index = memory.size() - 1;
|
||||||
}
|
}
|
||||||
@ -66,7 +66,7 @@ void History::refresh()
|
|||||||
|
|
||||||
bool History::try_back(
|
bool History::try_back(
|
||||||
Memory & match,
|
Memory & match,
|
||||||
const bool & FOLLOW
|
const bool & UPDATE_MEMORY_INDEX
|
||||||
) {
|
) {
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
@ -74,7 +74,7 @@ bool History::try_back(
|
|||||||
index - 1
|
index - 1
|
||||||
);
|
);
|
||||||
|
|
||||||
if (FOLLOW)
|
if (UPDATE_MEMORY_INDEX)
|
||||||
{
|
{
|
||||||
index--;
|
index--;
|
||||||
}
|
}
|
||||||
@ -90,7 +90,7 @@ bool History::try_back(
|
|||||||
|
|
||||||
bool History::try_forward(
|
bool History::try_forward(
|
||||||
Memory & match,
|
Memory & match,
|
||||||
const bool & FOLLOW
|
const bool & UPDATE_MEMORY_INDEX
|
||||||
) {
|
) {
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
@ -98,7 +98,7 @@ bool History::try_forward(
|
|||||||
index + 1
|
index + 1
|
||||||
);
|
);
|
||||||
|
|
||||||
if (FOLLOW)
|
if (UPDATE_MEMORY_INDEX)
|
||||||
{
|
{
|
||||||
index++;
|
index++;
|
||||||
}
|
}
|
||||||
|
@ -42,7 +42,7 @@ namespace app::browser::main::tab::page::navigation
|
|||||||
// Actions
|
// Actions
|
||||||
void add(
|
void add(
|
||||||
const Glib::ustring & REQUEST,
|
const Glib::ustring & REQUEST,
|
||||||
const bool & FOLLOW
|
const bool & UPDATE_MEMORY_INDEX
|
||||||
);
|
);
|
||||||
|
|
||||||
void refresh();
|
void refresh();
|
||||||
@ -51,12 +51,12 @@ namespace app::browser::main::tab::page::navigation
|
|||||||
|
|
||||||
bool try_back(
|
bool try_back(
|
||||||
Memory & match,
|
Memory & match,
|
||||||
const bool & FOLLOW
|
const bool & UPDATE_MEMORY_INDEX
|
||||||
);
|
);
|
||||||
|
|
||||||
bool try_forward(
|
bool try_forward(
|
||||||
Memory & match,
|
Memory & match,
|
||||||
const bool & FOLLOW
|
const bool & UPDATE_MEMORY_INDEX
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user