aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/citra_qt/debugger/callstack.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/citra_qt/debugger/callstack.h')
-rw-r--r--src/citra_qt/debugger/callstack.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/citra_qt/debugger/callstack.h b/src/citra_qt/debugger/callstack.h
index 4f4f7482..1a9b6dc8 100644
--- a/src/citra_qt/debugger/callstack.h
+++ b/src/citra_qt/debugger/callstack.h
@@ -15,9 +15,13 @@ public:
CallstackWidget(QWidget* parent = 0);
public slots:
- void OnCPUStepped();
+ void OnDebugModeEntered();
+ void OnDebugModeLeft();
private:
Ui::CallStack ui;
QStandardItemModel* callstack_model;
+
+ /// Clears the callstack widget while keeping the column widths the same
+ void Clear();
};