diff options
| author | 2015-09-11 18:17:24 -0300 | |
|---|---|---|
| committer | 2015-09-11 18:17:24 -0300 | |
| commit | 48f9bef75d6b0936c704e852223991e209ec8319 (patch) | |
| tree | 876fba83ba8f265edb16704b8c261112270150d4 /src/citra_qt/debugger/graphics_breakpoints.cpp | |
| parent | Merge pull request #1143 from lioncash/vcore-hdr (diff) | |
| parent | citra_qt: Reorganize headers (diff) | |
| download | yuzu-48f9bef75d6b0936c704e852223991e209ec8319.tar.gz yuzu-48f9bef75d6b0936c704e852223991e209ec8319.tar.xz yuzu-48f9bef75d6b0936c704e852223991e209ec8319.zip | |
Merge pull request #1142 from lioncash/hdrqt
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), |