1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 10:08:12 +00:00

DisplaySettings: Use format instead of printf.

This commit is contained in:
asynts 2020-10-04 21:14:40 +02:00 committed by Andreas Kling
parent 9efc69a6e2
commit 7fd4646acb
2 changed files with 3 additions and 3 deletions

View file

@ -54,7 +54,7 @@ int main(int argc, char** argv)
auto instance = DisplaySettingsWidget::construct();
auto window = GUI::Window::construct();
dbg() << "main window: " << window;
dbgln("main window: {}", window);
window->set_title("Display settings");
window->resize(360, 390);
window->set_resizable(false);