diff options
| author | 2015-01-03 15:51:14 -0800 | |
|---|---|---|
| committer | 2015-01-06 04:51:54 -0800 | |
| commit | b0a14cfe7f0075d0758371276b7f6384856aa6ff (patch) | |
| tree | 1c7c0f0f9c707138a0a7f37583c0ef31cd94bec3 /src/citra_qt/util/spinbox.cpp | |
| parent | Merge pull request #419 from linkmauve/no-x86-specifics (diff) | |
| download | yuzu-b0a14cfe7f0075d0758371276b7f6384856aa6ff.tar.gz yuzu-b0a14cfe7f0075d0758371276b7f6384856aa6ff.tar.xz yuzu-b0a14cfe7f0075d0758371276b7f6384856aa6ff.zip | |
citra-qt: Renamed all .hxx headers to .h
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 f9988409f..54f628e4c 100644 --- a/src/citra_qt/util/spinbox.cpp +++ b/src/citra_qt/util/spinbox.cpp | |||
| @@ -34,7 +34,7 @@ | |||
| 34 | 34 | ||
| 35 | #include "common/log.h" | 35 | #include "common/log.h" |
| 36 | 36 | ||
| 37 | #include "spinbox.hxx" | 37 | #include "spinbox.h" |
| 38 | 38 | ||
| 39 | CSpinBox::CSpinBox(QWidget* parent) : QAbstractSpinBox(parent), base(10), min_value(-100), max_value(100), value(0), num_digits(0) | 39 | CSpinBox::CSpinBox(QWidget* parent) : QAbstractSpinBox(parent), base(10), min_value(-100), max_value(100), value(0), num_digits(0) |
| 40 | { | 40 | { |