diff options
| author | Admiral H. Curtiss <pikachu025@gmail.com> | 2023-02-18 13:56:34 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-18 13:56:34 +0100 |
| commit | 8db35e6d04f7a95fccdd8cfafb654dd32a409474 (patch) | |
| tree | 2b66450cb0753506d54990f1266e4c5ad08ab4d5 /Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp | |
| parent | dfc0f124831390262e5c3a191d2175760f4fc169 (diff) | |
| parent | f1f3fd5d9d417447dfab69c531656cbe42eaf071 (diff) | |
Merge pull request #11578 from Pokechu22/memory-leaks-feb-2023
Fix various memory leaks
Diffstat (limited to 'Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp')
| -rw-r--r-- | Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp b/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp index e843420b1e..15c76289b4 100644 --- a/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp @@ -51,7 +51,7 @@ constexpr u32 WIDTH_PER_BRANCH_ARROW = 16; class BranchDisplayDelegate : public QStyledItemDelegate { public: - BranchDisplayDelegate(CodeViewWidget* parent) : m_parent(parent) {} + BranchDisplayDelegate(CodeViewWidget* parent) : QStyledItemDelegate(parent), m_parent(parent) {} private: CodeViewWidget* m_parent; |
