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/util/spinbox.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/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 | { |