mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 21:27:34 +00:00
Browser: Add History::replace_current() function
This function replaces the current history entry with a new history entry.
This commit is contained in:
parent
45214fdb1a
commit
b447e486b5
2 changed files with 10 additions and 0 deletions
|
@ -30,6 +30,15 @@ void History::push(const URL& url, String const& title)
|
||||||
m_current++;
|
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
|
History::URLTitlePair History::current() const
|
||||||
{
|
{
|
||||||
if (m_current == -1)
|
if (m_current == -1)
|
||||||
|
|
|
@ -20,6 +20,7 @@ public:
|
||||||
void dump() const;
|
void dump() const;
|
||||||
|
|
||||||
void push(const URL& url, String const& title);
|
void push(const URL& url, String const& title);
|
||||||
|
void replace_current(const URL& url, String const& title);
|
||||||
void update_title(String const& title);
|
void update_title(String const& title);
|
||||||
URLTitlePair current() const;
|
URLTitlePair current() const;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue