summaryrefslogtreecommitdiff
path: root/src/citra_qt/debugger/callstack.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-01-12 10:35:45 -0500
committerbunnei <bunneidev@gmail.com>2015-01-12 10:35:45 -0500
commit3683369500ae4244365ab2598c6fa2bf839970f0 (patch)
treeefa0e7bbdb4c53553658b6ee33c588f6cf200b1b /src/citra_qt/debugger/callstack.h
parentf3a7b66267a243c9e1a8bcd37f39389e41703fef (diff)
parentd670b7e52261c6cb4b53fb7f457f8ab4614ebc30 (diff)
Merge pull request #461 from archshift/callstack
Qt Callstack: Clear the callstack every time it's updated
Diffstat (limited to 'src/citra_qt/debugger/callstack.h')
-rw-r--r--src/citra_qt/debugger/callstack.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/citra_qt/debugger/callstack.h b/src/citra_qt/debugger/callstack.h
index fb390f5c3..1a9b6dc81 100644
--- a/src/citra_qt/debugger/callstack.h
+++ b/src/citra_qt/debugger/callstack.h
@@ -21,4 +21,7 @@ public slots:
private:
Ui::CallStack ui;
QStandardItemModel* callstack_model;
+
+ /// Clears the callstack widget while keeping the column widths the same
+ void Clear();
};