summaryrefslogtreecommitdiffstats
path: root/src/3rdparty
diff options
context:
space:
mode:
authorIain <qt-info@nokia.com>2010-04-15 14:41:58 (GMT)
committerSimon Hausmann <simon.hausmann@nokia.com>2010-04-17 00:11:56 (GMT)
commite7a123b35654f0abd05b7bfcefbb5dd0a0e732f3 (patch)
tree0d3bc4a936398ce94bc233885efdc49e56b4f7ce /src/3rdparty
parenta46894d99eff614579b539b1c02e01c49c10fc28 (diff)
downloadQt-e7a123b35654f0abd05b7bfcefbb5dd0a0e732f3.zip
Qt-e7a123b35654f0abd05b7bfcefbb5dd0a0e732f3.tar.gz
Qt-e7a123b35654f0abd05b7bfcefbb5dd0a0e732f3.tar.bz2
Re-apply change 81837e43e3f966c1755e90eb65df6e3bad506ed7 by Iain
Symbol visibility fixes for RVCT4 on Symbian RVCT 4 is far more strict with regards to symbol visiblity that RVCT 2.2, and will hide symbols unless all references have default visibility in the object files. Update the various places in Qt code where the symbol visibility was set incorrectly for DLL-based platforms (those that use __declspec(dllimport) and (dllexport). Note: Other Qt modules and QtScript are fixed in different commits. Task-number: QTBUG-9903 Reviewed-by: Jason Barron Janne Koskinen
Diffstat (limited to 'src/3rdparty')
-rw-r--r--src/3rdparty/webkit/WebCore/page/qt/EventHandlerQt.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/3rdparty/webkit/WebCore/page/qt/EventHandlerQt.cpp b/src/3rdparty/webkit/WebCore/page/qt/EventHandlerQt.cpp
index 3425289..7563459 100644
--- a/src/3rdparty/webkit/WebCore/page/qt/EventHandlerQt.cpp
+++ b/src/3rdparty/webkit/WebCore/page/qt/EventHandlerQt.cpp
@@ -51,7 +51,7 @@
#include "NotImplemented.h"
QT_BEGIN_NAMESPACE
-extern Q_GUI_EXPORT bool qt_tab_all_widgets; // from qapplication.cpp
+Q_DECL_IMPORT extern bool qt_tab_all_widgets; // from qapplication.cpp
QT_END_NAMESPACE
namespace WebCore {