diff options
author | mread <qt-info@nokia.com> | 2010-09-23 16:00:49 (GMT) |
---|---|---|
committer | mread <qt-info@nokia.com> | 2010-09-30 14:48:33 (GMT) |
commit | fb072fde30ec17d3a25b1535de82252579b81113 (patch) | |
tree | 12d5260ab57cac443ab7be23fa13547010d61e64 /src/corelib/arch | |
parent | b98ecf5228d7f716c1a7c26071ae47496560c61c (diff) | |
download | Qt-fb072fde30ec17d3a25b1535de82252579b81113.zip Qt-fb072fde30ec17d3a25b1535de82252579b81113.tar.gz Qt-fb072fde30ec17d3a25b1535de82252579b81113.tar.bz2 |
removing header use not in public SDKs
u32exec.h was not available in the symbian^3 SDK, so it has been removed
and other necessary headers are added.
Task-number: QT-3967
Reviewed-by: Shane Kearns
Diffstat (limited to 'src/corelib/arch')
-rw-r--r-- | src/corelib/arch/symbian/common_p.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/corelib/arch/symbian/common_p.h b/src/corelib/arch/symbian/common_p.h index d7682ae..4b1c64e 100644 --- a/src/corelib/arch/symbian/common_p.h +++ b/src/corelib/arch/symbian/common_p.h @@ -54,7 +54,11 @@ #include <e32ver.h> #include <e32hal.h> #include <e32panic.h> -#include <u32exec.h> +// backport of Symbian^4 allocator to Symbian^3 SDK does not contain u32exec.h +//#include <u32exec.h> +// but the following are needed +#include <u32std.h> +#include <e32btrace.h> #endif GLREF_C void Panic(TCdtPanic aPanic); |