mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 17:27:35 +00:00
Browser: Fix build after dbgf() -> dbgln() rename
This commit is contained in:
parent
e089855af0
commit
6f5322409d
2 changed files with 3 additions and 3 deletions
|
@ -30,10 +30,10 @@ namespace Browser {
|
|||
|
||||
void History::dump() const
|
||||
{
|
||||
dbgf("Dump {} items(s)", m_items.size());
|
||||
dbgln("Dump {} items(s)", m_items.size());
|
||||
int i = 0;
|
||||
for (auto& item : m_items) {
|
||||
dbgf("[{}] {} {}", i, item, m_current == i ? '*' : ' ');
|
||||
dbgln("[{}] {} {}", i, item, m_current == i ? '*' : ' ');
|
||||
++i;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -193,7 +193,7 @@ int main(int argc, char** argv)
|
|||
|
||||
new_tab.load(url);
|
||||
|
||||
dbgf("Added new tab {:p}, loading {}", &new_tab, url);
|
||||
dbgln("Added new tab {:p}, loading {}", &new_tab, url);
|
||||
|
||||
if (activate)
|
||||
tab_widget.set_active_widget(&new_tab);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue