summaryrefslogtreecommitdiffstats
path: root/src/corelib
diff options
context:
space:
mode:
authoraxis <qt-info@nokia.com>2009-10-23 11:34:14 (GMT)
committeraxis <qt-info@nokia.com>2009-10-23 15:32:24 (GMT)
commit733c7232f2c9656c26bfe668c2e95f9c93cceb4b (patch)
treeaeabac904f5279e0bf8e44965653171bac7edd03 /src/corelib
parent31d299b666e2043a450eac7f76b318d664d9efa0 (diff)
downloadQt-733c7232f2c9656c26bfe668c2e95f9c93cceb4b.zip
Qt-733c7232f2c9656c26bfe668c2e95f9c93cceb4b.tar.gz
Qt-733c7232f2c9656c26bfe668c2e95f9c93cceb4b.tar.bz2
Added std headers to fix Symbian build error.
Diffstat (limited to 'src/corelib')
-rw-r--r--src/corelib/global/qglobal.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/corelib/global/qglobal.cpp b/src/corelib/global/qglobal.cpp
index 7d47944..907be24 100644
--- a/src/corelib/global/qglobal.cpp
+++ b/src/corelib/global/qglobal.cpp
@@ -58,6 +58,11 @@
#include <stdarg.h>
#include <string.h>
+#ifndef QT_NO_EXCEPTIONS
+# include <string>
+# include <exception>
+#endif
+
#if !defined(Q_OS_WINCE)
# include <errno.h>
# if defined(Q_CC_MSVC)