diff options
author | Andreas Kling <kling@serenityos.org> | 2020-08-17 15:22:30 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-08-17 18:05:35 +0200 |
commit | c0462c65cfb18962b3b0677c2e14b0cc60a6b3df (patch) | |
tree | fc76b61b3757f19b9fc459203ff374f0492ee30a /DevTools/HackStudio/EditorWrapper.cpp | |
parent | ce48de98450142ac62f4b5d3939fc22f2571b6cc (diff) | |
download | serenity-c0462c65cfb18962b3b0677c2e14b0cc60a6b3df.zip |
HackStudio: Move everything into the HackStudio namespace
Diffstat (limited to 'DevTools/HackStudio/EditorWrapper.cpp')
-rw-r--r-- | DevTools/HackStudio/EditorWrapper.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/DevTools/HackStudio/EditorWrapper.cpp b/DevTools/HackStudio/EditorWrapper.cpp index dae1c2b49a..91786b65ef 100644 --- a/DevTools/HackStudio/EditorWrapper.cpp +++ b/DevTools/HackStudio/EditorWrapper.cpp @@ -33,6 +33,8 @@ #include <LibGUI/Label.h> #include <LibGfx/Font.h> +namespace HackStudio { + EditorWrapper::EditorWrapper(BreakpointChangeCallback breakpoint_change_callback) { set_layout<GUI::VerticalBoxLayout>(); @@ -82,3 +84,5 @@ void EditorWrapper::set_editor_has_focus(Badge<Editor>, bool focus) { m_filename_label->set_font(focus ? Gfx::Font::default_bold_font() : Gfx::Font::default_font()); } + +} |