diff options
author | Alberto Corona <albcoron@gmail.com> | 2014-03-25 12:54:37 -0500 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-03-25 11:19:56 -0700 |
commit | 027ffc41bb2e50ccb6a1b812a225773fb8227fee (patch) | |
tree | 0fe9b0fc0626d18f6eb2ec09b7ef9bca310ac38a | |
parent | dd0c995f2fc4496bcdf31962d3a3c823baf79591 (diff) | |
download | subsurface-027ffc41bb2e50ccb6a1b812a225773fb8227fee.tar.gz |
simplewidgets: Include stdint for cross compatability
Not including stdint leaves 'int64_t when' without a type and undefined when
compiling for Windows with mingw
Signed-off-by: Alberto Corona <albcoron@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | qt-ui/simplewidgets.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qt-ui/simplewidgets.h b/qt-ui/simplewidgets.h index 178dfece8..d43d2bbcc 100644 --- a/qt-ui/simplewidgets.h +++ b/qt-ui/simplewidgets.h @@ -6,6 +6,7 @@ class QAbstractButton; #include <QWidget> #include <QDialog> +#include <stdint.h> #include "ui_renumber.h" #include "ui_shifttimes.h" |