mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
Browser: Fix build after dbgf() -> dbgln() rename
This commit is contained in:
parent
e089855af0
commit
6f5322409d
Notes:
sideshowbarker
2024-07-19 02:04:19 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/6f5322409d7
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…
Reference in a new issue