diff options
author | mread <qt-info@nokia.com> | 2010-09-27 10:17:53 (GMT) |
---|---|---|
committer | mread <qt-info@nokia.com> | 2010-09-30 14:48:38 (GMT) |
commit | 2a8c5d045a88633fab8d86e56ad0f2fa7c8608c1 (patch) | |
tree | aa1facdbbf7ea0674b98dac722aae2cbd18b4e71 /src/s60main/newallocator_hook.cpp | |
parent | 6bd02df13f6fc1dddc2c65a5d9b56fd9619c435e (diff) | |
download | Qt-2a8c5d045a88633fab8d86e56ad0f2fa7c8608c1.zip Qt-2a8c5d045a88633fab8d86e56ad0f2fa7c8608c1.tar.gz Qt-2a8c5d045a88633fab8d86e56ad0f2fa7c8608c1.tar.bz2 |
removing need for u32std.h in s60main
newallocator_hook.cpp had #include <u32std.h> for the definition of
SStdEpocThreadCreateInfo. This header is not available in earlier S60
platforms. But we do not need the full definition of
SStdEpocThreadCreateInfo, so a forward declaration is used instead.
Task-number: QT-3967
Reviewed-by: Shane Kearns
Diffstat (limited to 'src/s60main/newallocator_hook.cpp')
-rw-r--r-- | src/s60main/newallocator_hook.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/s60main/newallocator_hook.cpp b/src/s60main/newallocator_hook.cpp index 9825920..9cc6afb 100644 --- a/src/s60main/newallocator_hook.cpp +++ b/src/s60main/newallocator_hook.cpp @@ -40,7 +40,8 @@ ****************************************************************************/ #include <e32std.h> #include <qglobal.h> -#include <u32std.h> + +struct SStdEpocThreadCreateInfo; Q_CORE_EXPORT TInt qt_symbian_SetupThreadHeap(TBool aNotFirst, SStdEpocThreadCreateInfo& aInfo); |