diff options
author | Federico Guerinoni <guerinoni.federico@gmail.com> | 2021-05-22 14:14:49 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-06-23 19:00:11 +0100 |
commit | 935c7b2f4b1299aceec32e7e5123f2f014cc6710 (patch) | |
tree | d54a997b05ad5fa55ecba2cb71d382d37ea6ee93 /Userland/DevTools/HackStudio/HackStudioWidget.h | |
parent | 26a7356e90a1717b7259510e13af906c7bb09c43 (diff) | |
download | serenity-935c7b2f4b1299aceec32e7e5123f2f014cc6710.zip |
HackStudio: Add TODO entries widget
Diffstat (limited to 'Userland/DevTools/HackStudio/HackStudioWidget.h')
-rw-r--r-- | Userland/DevTools/HackStudio/HackStudioWidget.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Userland/DevTools/HackStudio/HackStudioWidget.h b/Userland/DevTools/HackStudio/HackStudioWidget.h index 37f11fa227..86e56596f0 100644 --- a/Userland/DevTools/HackStudio/HackStudioWidget.h +++ b/Userland/DevTools/HackStudio/HackStudioWidget.h @@ -19,6 +19,7 @@ #include "Project.h" #include "ProjectFile.h" #include "TerminalWrapper.h" +#include "ToDoEntriesWidget.h" #include <LibGUI/ActionGroup.h> #include <LibGUI/Scrollbar.h> #include <LibGUI/Splitter.h> @@ -143,6 +144,7 @@ private: RefPtr<TerminalWrapper> m_terminal_wrapper; RefPtr<Locator> m_locator; RefPtr<FindInFilesWidget> m_find_in_files_widget; + RefPtr<ToDoEntriesWidget> m_todo_entries_widget; RefPtr<DebugInfoWidget> m_debug_info_widget; RefPtr<DisassemblyWidget> m_disassembly_widget; RefPtr<Threading::Thread> m_debugger_thread; |