Browser: Add History::replace_current() function

This function replaces the current history entry with a new history
entry.
This commit is contained in:
Baitinq 2022-11-24 01:17:15 +01:00 committed by Andreas Kling
parent 45214fdb1a
commit b447e486b5
Notes: sideshowbarker 2024-07-17 04:02:40 +09:00
2 changed files with 10 additions and 0 deletions

View file

@ -30,6 +30,15 @@ void History::push(const URL& url, String const& title)
m_current++;
}
void History::replace_current(const URL& url, String const& title)
{
if (m_current == -1)
return;
m_current--;
push(url, title);
}
History::URLTitlePair History::current() const
{
if (m_current == -1)

View file

@ -20,6 +20,7 @@ public:
void dump() const;
void push(const URL& url, String const& title);
void replace_current(const URL& url, String const& title);
void update_title(String const& title);
URLTitlePair current() const;