diff options
author | bunnei <bunneidev@gmail.com> | 2018-01-16 17:23:33 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-16 17:23:33 -0500 |
commit | 52fe15278b812a2518dd874f29c0829b221fd70f (patch) | |
tree | 6bf8782b9338d94938e4060c8a3c88855d68ee75 /src/yuzu/util/spinbox.cpp | |
parent | f10a7081e38419effd0ca6d6b9679310de47b867 (diff) | |
parent | e35644c00533c797888a23420aae90b07e0da184 (diff) |
Merge pull request #47 from MerryMage/build-fixes
Misc build fixes
Diffstat (limited to 'src/yuzu/util/spinbox.cpp')
-rw-r--r-- | src/yuzu/util/spinbox.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/util/spinbox.cpp b/src/yuzu/util/spinbox.cpp index ede6fe0a8..92753ec1c 100644 --- a/src/yuzu/util/spinbox.cpp +++ b/src/yuzu/util/spinbox.cpp @@ -31,8 +31,8 @@ #include <cstdlib> #include <QLineEdit> #include <QRegExpValidator> -#include "yuzu/util/spinbox.h" #include "common/assert.h" +#include "yuzu/util/spinbox.h" CSpinBox::CSpinBox(QWidget* parent) : QAbstractSpinBox(parent), min_value(-100), max_value(100), value(0), base(10), num_digits(0) { |