diff options
| author | 2015-09-11 00:23:00 -0400 | |
|---|---|---|
| committer | 2015-09-11 00:57:24 -0400 | |
| commit | abe5bb4019f84b5bcb43c581f1258b3a44f1f2c7 (patch) | |
| tree | 9307673c985a0338efb8a409403b9ec90684005d /src/citra_qt/debugger/graphics_breakpoints.cpp | |
| parent | Merge pull request #1130 from lioncash/block (diff) | |
| download | yuzu-abe5bb4019f84b5bcb43c581f1258b3a44f1f2c7.tar.gz yuzu-abe5bb4019f84b5bcb43c581f1258b3a44f1f2c7.tar.xz yuzu-abe5bb4019f84b5bcb43c581f1258b3a44f1f2c7.zip | |
citra_qt: Reorganize headers
Diffstat (limited to 'src/citra_qt/debugger/graphics_breakpoints.cpp')
| -rw-r--r-- | src/citra_qt/debugger/graphics_breakpoints.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/citra_qt/debugger/graphics_breakpoints.cpp b/src/citra_qt/debugger/graphics_breakpoints.cpp index 5202c168c..819ec7707 100644 --- a/src/citra_qt/debugger/graphics_breakpoints.cpp +++ b/src/citra_qt/debugger/graphics_breakpoints.cpp | |||
| @@ -2,16 +2,16 @@ | |||
| 2 | // Licensed under GPLv2 or any later version | 2 | // Licensed under GPLv2 or any later version |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include <QLabel> | ||
| 5 | #include <QMetaType> | 6 | #include <QMetaType> |
| 6 | #include <QPushButton> | 7 | #include <QPushButton> |
| 7 | #include <QTreeView> | 8 | #include <QTreeView> |
| 8 | #include <QVBoxLayout> | 9 | #include <QVBoxLayout> |
| 9 | #include <QLabel> | ||
| 10 | 10 | ||
| 11 | #include "common/assert.h" | 11 | #include "citra_qt/debugger/graphics_breakpoints.h" |
| 12 | #include "citra_qt/debugger/graphics_breakpoints_p.h" | ||
| 12 | 13 | ||
| 13 | #include "graphics_breakpoints.h" | 14 | #include "common/assert.h" |
| 14 | #include "graphics_breakpoints_p.h" | ||
| 15 | 15 | ||
| 16 | BreakPointModel::BreakPointModel(std::shared_ptr<Pica::DebugContext> debug_context, QObject* parent) | 16 | BreakPointModel::BreakPointModel(std::shared_ptr<Pica::DebugContext> debug_context, QObject* parent) |
| 17 | : QAbstractListModel(parent), context_weak(debug_context), | 17 | : QAbstractListModel(parent), context_weak(debug_context), |