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/util/spinbox.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/util/spinbox.cpp')
| -rw-r--r-- | src/citra_qt/util/spinbox.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/citra_qt/util/spinbox.cpp b/src/citra_qt/util/spinbox.cpp index de4060116..415e7fbec 100644 --- a/src/citra_qt/util/spinbox.cpp +++ b/src/citra_qt/util/spinbox.cpp | |||
| @@ -33,8 +33,8 @@ | |||
| 33 | #include <QLineEdit> | 33 | #include <QLineEdit> |
| 34 | #include <QRegExpValidator> | 34 | #include <QRegExpValidator> |
| 35 | 35 | ||
| 36 | #include "citra_qt/util/spinbox.h" | ||
| 36 | #include "common/assert.h" | 37 | #include "common/assert.h" |
| 37 | #include "spinbox.h" | ||
| 38 | 38 | ||
| 39 | CSpinBox::CSpinBox(QWidget* parent) : QAbstractSpinBox(parent), min_value(-100), max_value(100), value(0), base(10), num_digits(0) | 39 | CSpinBox::CSpinBox(QWidget* parent) : QAbstractSpinBox(parent), min_value(-100), max_value(100), value(0), base(10), num_digits(0) |
| 40 | { | 40 | { |