diff options
| author | 2017-05-08 16:02:53 -0400 | |
|---|---|---|
| committer | 2017-05-08 16:02:53 -0400 | |
| commit | 7325413cd8b4f02719ca0f87c8a70d4713333a98 (patch) | |
| tree | 2bed3e545cb8b660d695763ce27dc3069847d7b1 /src/citra_qt/debugger/callstack.h | |
| parent | Merge pull request #2682 from nicoboss/filter (diff) | |
| parent | Dyncom: Remove disassembler code (diff) | |
| download | yuzu-7325413cd8b4f02719ca0f87c8a70d4713333a98.tar.gz yuzu-7325413cd8b4f02719ca0f87c8a70d4713333a98.tar.xz yuzu-7325413cd8b4f02719ca0f87c8a70d4713333a98.zip | |
Merge pull request #2689 from yuriks/remove-disassembler
Remove built-in disassembler and related code
Diffstat (limited to 'src/citra_qt/debugger/callstack.h')
| -rw-r--r-- | src/citra_qt/debugger/callstack.h | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/src/citra_qt/debugger/callstack.h b/src/citra_qt/debugger/callstack.h deleted file mode 100644 index f04ab9c7e..000000000 --- a/src/citra_qt/debugger/callstack.h +++ /dev/null | |||
| @@ -1,28 +0,0 @@ | |||
| 1 | // Copyright 2014 Citra Emulator Project | ||
| 2 | // Licensed under GPLv2 or any later version | ||
| 3 | // Refer to the license.txt file included. | ||
| 4 | |||
| 5 | #pragma once | ||
| 6 | |||
| 7 | #include <QDockWidget> | ||
| 8 | #include "ui_callstack.h" | ||
| 9 | |||
| 10 | class QStandardItemModel; | ||
| 11 | |||
| 12 | class CallstackWidget : public QDockWidget { | ||
| 13 | Q_OBJECT | ||
| 14 | |||
| 15 | public: | ||
| 16 | explicit CallstackWidget(QWidget* parent = nullptr); | ||
| 17 | |||
| 18 | public slots: | ||
| 19 | void OnDebugModeEntered(); | ||
| 20 | void OnDebugModeLeft(); | ||
| 21 | |||
| 22 | private: | ||
| 23 | Ui::CallStack ui; | ||
| 24 | QStandardItemModel* callstack_model; | ||
| 25 | |||
| 26 | /// Clears the callstack widget while keeping the column widths the same | ||
| 27 | void Clear(); | ||
| 28 | }; | ||