summaryrefslogtreecommitdiffstats
path: root/src/s60main
diff options
context:
space:
mode:
authormread <qt-info@nokia.com>2010-09-27 11:17:53 +0100
committermread <qt-info@nokia.com>2010-09-30 15:48:38 +0100
commit2a8c5d045a88633fab8d86e56ad0f2fa7c8608c1 (patch)
treeaa1facdbbf7ea0674b98dac722aae2cbd18b4e71 /src/s60main
parent6bd02df13f6fc1dddc2c65a5d9b56fd9619c435e (diff)
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')
-rw-r--r--src/s60main/newallocator_hook.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/s60main/newallocator_hook.cpp b/src/s60main/newallocator_hook.cpp
index 982592040f..9cc6afb728 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);