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

FontEditor: Rename FontEditorWidget => FontEditor::MainWidget

This commit is contained in:
thankyouverycool 2022-07-05 06:37:06 -04:00 committed by Andreas Kling
parent dcf6454059
commit 69a385f559
5 changed files with 39 additions and 39 deletions

View file

@ -4,7 +4,7 @@
* SPDX-License-Identifier: BSD-2-Clause
*/
#include "FontEditor.h"
#include "MainWidget.h"
#include <AK/URL.h>
#include <LibConfig/Client.h>
#include <LibCore/ArgsParser.h>
@ -42,7 +42,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
window->set_icon(app_icon.bitmap_for_size(16));
window->resize(640, 470);
auto font_editor = TRY(window->try_set_main_widget<FontEditor::FontEditorWidget>());
auto font_editor = TRY(window->try_set_main_widget<FontEditor::MainWidget>());
TRY(font_editor->initialize_menubar(*window));
if (path) {