Browser: Fix build after dbgf() -> dbgln() rename

This commit is contained in:
Andreas Kling 2020-10-04 17:09:01 +02:00
parent e089855af0
commit 6f5322409d
Notes: sideshowbarker 2024-07-19 02:04:19 +09:00
2 changed files with 3 additions and 3 deletions

View file

@ -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;
}
}

View file

@ -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);