diff options
author | Itamar <itamar8910@gmail.com> | 2020-05-08 14:20:06 +0300 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-05-09 23:41:08 +0200 |
commit | 1fb62df02adf47831e20824c58f7179539ed29a0 (patch) | |
tree | 624120373c64b57669a179423afacafbc6ef5515 /DevTools/HackStudio/Debugger/DebugInfoWidget.h | |
parent | b9f0f402f4b9b2a6545300f7bed0f53896e61208 (diff) | |
download | serenity-1fb62df02adf47831e20824c58f7179539ed29a0.zip |
HackStudio: Show a backtrace in the debug information tab
Diffstat (limited to 'DevTools/HackStudio/Debugger/DebugInfoWidget.h')
-rw-r--r-- | DevTools/HackStudio/Debugger/DebugInfoWidget.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/DevTools/HackStudio/Debugger/DebugInfoWidget.h b/DevTools/HackStudio/Debugger/DebugInfoWidget.h index a7d49542ed..6300467208 100644 --- a/DevTools/HackStudio/Debugger/DebugInfoWidget.h +++ b/DevTools/HackStudio/Debugger/DebugInfoWidget.h @@ -27,6 +27,7 @@ #pragma once #include "Debugger.h" +#include "LibGUI/ListView.h" #include <AK/NonnullOwnPtr.h> #include <LibGUI/Model.h> #include <LibGUI/Widget.h> @@ -43,6 +44,6 @@ public: private: explicit DebugInfoWidget(); - RefPtr<GUI::TreeView> m_info_view; - RefPtr<GUI::TableView> m_backtrace_view; + RefPtr<GUI::TreeView> m_variables_view; + RefPtr<GUI::ListView> m_backtrace_view; }; |