summaryrefslogtreecommitdiff
path: root/Userland/DevTools/HackStudio/Debugger/DebugInfoWidget.h
diff options
context:
space:
mode:
authorItamar <itamar8910@gmail.com>2021-11-19 16:13:07 +0200
committerLinus Groh <mail@linusgroh.de>2021-11-20 21:22:24 +0000
commit94d68583fb6daa25ad7d912f487e006e5f161718 (patch)
tree775106fc842e814f6ce82ab3e2e00894c5ea896d /Userland/DevTools/HackStudio/Debugger/DebugInfoWidget.h
parent7950f5cb51549dc304e51616597b96dc4c273b51 (diff)
downloadserenity-94d68583fb6daa25ad7d912f487e006e5f161718.zip
HackStudio: Use ProcessInspector instead of DebugSession where possible
Diffstat (limited to 'Userland/DevTools/HackStudio/Debugger/DebugInfoWidget.h')
-rw-r--r--Userland/DevTools/HackStudio/Debugger/DebugInfoWidget.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/DevTools/HackStudio/Debugger/DebugInfoWidget.h b/Userland/DevTools/HackStudio/Debugger/DebugInfoWidget.h
index 2fc66fac16..0e3f06b628 100644
--- a/Userland/DevTools/HackStudio/Debugger/DebugInfoWidget.h
+++ b/Userland/DevTools/HackStudio/Debugger/DebugInfoWidget.h
@@ -26,7 +26,7 @@ class DebugInfoWidget final : public GUI::Widget {
public:
virtual ~DebugInfoWidget() override { }
- void update_state(const Debug::DebugSession&, const PtraceRegisters&);
+ void update_state(Debug::ProcessInspector const&, PtraceRegisters const&);
void program_stopped();
void set_debug_actions_enabled(bool enabled);