diff options
author | Mark Brand <mabrand@mabrand.nl> | 2010-08-30 13:25:54 (GMT) |
---|---|---|
committer | Thiago Macieira <thiago.macieira@nokia.com> | 2010-08-30 13:28:08 (GMT) |
commit | edbc656bfa5069dd40f64ae3123d6370c2d86538 (patch) | |
tree | def5a94328557abfdb1ef2917d508a2a671b833e /src/svg | |
parent | f6020903ee0caea34b84e6660c3fbd1545e21249 (diff) | |
download | Qt-edbc656bfa5069dd40f64ae3123d6370c2d86538.zip Qt-edbc656bfa5069dd40f64ae3123d6370c2d86538.tar.gz Qt-edbc656bfa5069dd40f64ae3123d6370c2d86538.tar.bz2 |
Fix static build on Windows with MinGW.
Q_DECL_IMPORT is still __declspec(dllimport), which is unsuitable for
static code.
Reviewed-by: Thiago Macieira <thiago.macieira@nokia.com>
Diffstat (limited to 'src/svg')
-rw-r--r-- | src/svg/qsvghandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/svg/qsvghandler.cpp b/src/svg/qsvghandler.cpp index d545440..bf19a88 100644 --- a/src/svg/qsvghandler.cpp +++ b/src/svg/qsvghandler.cpp @@ -74,7 +74,7 @@ QT_BEGIN_NAMESPACE static const char *qt_inherit_text = "inherit"; #define QT_INHERIT QLatin1String(qt_inherit_text) -Q_DECL_IMPORT double qstrtod(const char *s00, char const **se, bool *ok); +Q_CORE_EXPORT double qstrtod(const char *s00, char const **se, bool *ok); // ======== duplicated from qcolor_p |