diff options
author | Janne Anttila <janne.anttila@digia.com> | 2011-08-24 06:03:43 (GMT) |
---|---|---|
committer | Qt by Nokia <qt-info@nokia.com> | 2012-01-30 20:52:59 (GMT) |
commit | bdbc7b37dbf7089ea9b155254d1d7633c99bdeda (patch) | |
tree | bf410bffb22177bda57a446b31ed282105921dae /src/corelib | |
parent | d9e0b3f4f0ee120f5ce5bbbef92bbf4587fca0f7 (diff) | |
download | Qt-bdbc7b37dbf7089ea9b155254d1d7633c99bdeda.zip Qt-bdbc7b37dbf7089ea9b155254d1d7633c99bdeda.tar.gz Qt-bdbc7b37dbf7089ea9b155254d1d7633c99bdeda.tar.bz2 |
Build fix for WINCE to qlocale_tools.cpp
Task-number: QTBUG-22500
Change-Id: If530799cf8ef971f5caf78d0c6dbeeda719d148f
Reviewed-by: Joerg Bornemann <joerg.bornemann@nokia.com>
(cherry picked from commit dd5e72e2da95e163254998094ec2a2fad9347c4b)
Diffstat (limited to 'src/corelib')
-rw-r--r-- | src/corelib/tools/qlocale_tools.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/corelib/tools/qlocale_tools.cpp b/src/corelib/tools/qlocale_tools.cpp index 9a8d892..8a57a41 100644 --- a/src/corelib/tools/qlocale_tools.cpp +++ b/src/corelib/tools/qlocale_tools.cpp @@ -50,6 +50,10 @@ #include <stdlib.h> #include <time.h> +#ifdef Q_OS_WINCE +# include "qfunctions_wince.h" // for _control87 +#endif + #if defined(Q_OS_LINUX) && !defined(__UCLIBC__) # include <fenv.h> #endif |