summaryrefslogtreecommitdiff
path: root/src/yuzu/debugger/wait_tree.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-08-06 13:12:32 -0400
committerLioncash <mathew1800@gmail.com>2018-08-06 13:29:14 -0400
commit7846295a8f5c74cecdebc467e902406fe7179547 (patch)
tree4d4ede32087cb28ec94a506949b72d3f606cf75c /src/yuzu/debugger/wait_tree.h
parent00a68c5eea17db975446c499a6dbf84311441f04 (diff)
qt: Add missing override specifiers where applicable
Diffstat (limited to 'src/yuzu/debugger/wait_tree.h')
-rw-r--r--src/yuzu/debugger/wait_tree.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/yuzu/debugger/wait_tree.h b/src/yuzu/debugger/wait_tree.h
index 6cbce6856..513b3c45d 100644
--- a/src/yuzu/debugger/wait_tree.h
+++ b/src/yuzu/debugger/wait_tree.h
@@ -25,11 +25,13 @@ class WaitTreeThread;
class WaitTreeItem : public QObject {
Q_OBJECT
public:
+ ~WaitTreeItem() override;
+
virtual bool IsExpandable() const;
virtual std::vector<std::unique_ptr<WaitTreeItem>> GetChildren() const;
virtual QString GetText() const = 0;
virtual QColor GetColor() const;
- virtual ~WaitTreeItem();
+
void Expand();
WaitTreeItem* Parent() const;
const std::vector<std::unique_ptr<WaitTreeItem>>& Children() const;