diff options
author | Iain <qt-info@nokia.com> | 2010-04-15 14:41:58 (GMT) |
---|---|---|
committer | Iain <qt-info@nokia.com> | 2010-04-16 21:07:56 (GMT) |
commit | 36d43043b0a82620de58db7105152f087f99d535 (patch) | |
tree | 0e72aa9e04da6c973c091270116b6a267bcf67c5 /src/3rdparty/webkit/WebCore | |
parent | 33aac2ca5b79afcb08c13c2b4092acfdb5056fdb (diff) | |
download | Qt-36d43043b0a82620de58db7105152f087f99d535.zip Qt-36d43043b0a82620de58db7105152f087f99d535.tar.gz Qt-36d43043b0a82620de58db7105152f087f99d535.tar.bz2 |
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
(cherry picked from commit 81837e43e3f966c1755e90eb65df6e3bad506ed7)
Diffstat (limited to 'src/3rdparty/webkit/WebCore')
-rw-r--r-- | src/3rdparty/webkit/WebCore/page/qt/EventHandlerQt.cpp | 2 |
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 d7982fa..2fcce5b 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 { |