mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-02 14:19:48 +00:00
LibGUI: Convert dbgprintf() => dbgln()
This commit is contained in:
parent
25a69d2b18
commit
304f0fe5ee
Notes:
sideshowbarker
2024-07-18 22:11:39 +09:00
Author: https://github.com/awesomekling
Commit: 304f0fe5ee
1 changed files with 1 additions and 1 deletions
|
@ -256,7 +256,7 @@ void WindowServerConnection::handle(const Messages::WindowClient::MenuItemActiva
|
||||||
{
|
{
|
||||||
auto* menu = Menu::from_menu_id(message.menu_id());
|
auto* menu = Menu::from_menu_id(message.menu_id());
|
||||||
if (!menu) {
|
if (!menu) {
|
||||||
dbgprintf("EventLoop received event for invalid menu ID %d\n", message.menu_id());
|
dbgln("EventLoop received event for invalid menu ID {}", message.menu_id());
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (auto* action = menu->action_at(message.identifier()))
|
if (auto* action = menu->action_at(message.identifier()))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue