diff options
author | Dmitry Trofimov <dmitry.trofimov@nokia.com> | 2011-06-01 07:53:29 (GMT) |
---|---|---|
committer | Dmitry Trofimov <dmitry.trofimov@nokia.com> | 2011-06-01 07:53:29 (GMT) |
commit | 8c3a4568dcbb75c36ea3c22ced4d10d4b3522d9f (patch) | |
tree | 2f14ee80f4b4046d0f6c5035a82ec00cb2d6f104 /tests/auto | |
parent | fac834807c1cc4f9fdc412f50a85780e4df8562d (diff) | |
download | Qt-8c3a4568dcbb75c36ea3c22ced4d10d4b3522d9f.zip Qt-8c3a4568dcbb75c36ea3c22ced4d10d4b3522d9f.tar.gz Qt-8c3a4568dcbb75c36ea3c22ced4d10d4b3522d9f.tar.bz2 |
Fix the build break for QUrl autotest on Symbian
This commit fixes the linking problem for QUrl autotest on Symbian
Reviewed by: Guoqing Zhang
Diffstat (limited to 'tests/auto')
-rw-r--r-- | tests/auto/qurl/tst_qurl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/qurl/tst_qurl.cpp b/tests/auto/qurl/tst_qurl.cpp index 613053b..c23c633 100644 --- a/tests/auto/qurl/tst_qurl.cpp +++ b/tests/auto/qurl/tst_qurl.cpp @@ -3167,8 +3167,8 @@ void tst_QUrl::nameprep_testsuite_data() #ifdef QT_BUILD_INTERNAL QT_BEGIN_NAMESPACE -extern void qt_nameprep(QString *source, int from); -extern bool qt_check_std3rules(const QChar *, int); +Q_CORE_EXPORT extern void qt_nameprep(QString *source, int from); +Q_CORE_EXPORT extern bool qt_check_std3rules(const QChar *, int); QT_END_NAMESPACE #endif |