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.
This commit is contained in:
asynts 2020-10-04 20:34:54 +02:00 committed by Andreas Kling
parent 206e48abb5
commit e1dfeef11f
Notes: sideshowbarker 2024-07-19 02:02:32 +09:00

View File

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