aboutsummaryrefslogtreecommitdiff
path: root/src/yuzu/debugger/wait_tree.h
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2018-11-26 18:34:07 -0500
committerZach Hilman <zachhilman@gmail.com>2018-11-29 08:45:41 -0500
commitff610103b58b3e0dd39fafb539a1cc0bc0fae577 (patch)
treecbd54b09f9270f6f1d92a2f45a5ccdb307569093 /src/yuzu/debugger/wait_tree.h
parenta56fc84e7a116681373ab9157193d2b8ae0f29af (diff)
core: Port all current usages of Event to Readable/WritableEvent
Diffstat (limited to 'src/yuzu/debugger/wait_tree.h')
-rw-r--r--src/yuzu/debugger/wait_tree.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/yuzu/debugger/wait_tree.h b/src/yuzu/debugger/wait_tree.h
index 331f89885..c0b6e0e7f 100644
--- a/src/yuzu/debugger/wait_tree.h
+++ b/src/yuzu/debugger/wait_tree.h
@@ -18,7 +18,7 @@ class EmuThread;
namespace Kernel {
class WaitObject;
-class Event;
+class WritableEvent;
class Thread;
class Timer;
} // namespace Kernel
@@ -144,7 +144,7 @@ public:
class WaitTreeEvent : public WaitTreeWaitObject {
Q_OBJECT
public:
- explicit WaitTreeEvent(const Kernel::Event& object);
+ explicit WaitTreeEvent(const Kernel::WritableEvent& object);
~WaitTreeEvent() override;
std::vector<std::unique_ptr<WaitTreeItem>> GetChildren() const override;