From e1dfeef11fd41e1ecf4a8a84d86ea26b928fa26b Mon Sep 17 00:00:00 2001 From: asynts Date: Sun, 4 Oct 2020 20:34:54 +0200 Subject: [PATCH] Calendar: Use format instead of printf. I am not sure what this message is supposed to tell me, but I'll just keep it around. --- Applications/Calendar/AddEventDialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Applications/Calendar/AddEventDialog.cpp b/Applications/Calendar/AddEventDialog.cpp index 4a0bd461ac..e6703ce635 100644 --- a/Applications/Calendar/AddEventDialog.cpp +++ b/Applications/Calendar/AddEventDialog.cpp @@ -109,7 +109,7 @@ AddEventDialog::AddEventDialog(Core::DateTime date_time, Window* parent_window) ok_button.set_size_policy(GUI::SizePolicy::Fixed, GUI::SizePolicy::Fixed); ok_button.set_preferred_size(80, 20); ok_button.on_click = [this](auto) { - dbg() << "TODO: Add event icon on specific tile"; + dbgln("TODO: Add event icon on specific tile"); done(Dialog::ExecOK); };