diff options
author | Thierry Bastian <thierry.bastian@nokia.com> | 2009-06-08 12:46:53 (GMT) |
---|---|---|
committer | Thierry Bastian <thierry.bastian@nokia.com> | 2009-06-08 12:48:57 (GMT) |
commit | b6542eb2b1e44aea5d82ad89b8506c567aef18ad (patch) | |
tree | 0a192e22d00c4f0ab5541c478008259fe7363f7e /src/corelib | |
parent | 4662f3984a89b7a702a7d24c02cb30b0a5e76ef1 (diff) | |
download | Qt-b6542eb2b1e44aea5d82ad89b8506c567aef18ad.zip Qt-b6542eb2b1e44aea5d82ad89b8506c567aef18ad.tar.gz Qt-b6542eb2b1e44aea5d82ad89b8506c567aef18ad.tar.bz2 |
Small fix to exported symbol
Diffstat (limited to 'src/corelib')
-rw-r--r-- | src/corelib/tools/qunicodetables_p.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/tools/qunicodetables_p.h b/src/corelib/tools/qunicodetables_p.h index e588313..5f696dd 100644 --- a/src/corelib/tools/qunicodetables_p.h +++ b/src/corelib/tools/qunicodetables_p.h @@ -178,7 +178,7 @@ namespace QUnicodeTables { } Q_CORE_EXPORT int QT_FASTCALL script(uint ucs4); - Q_CORE_EXPORT_INLINE int QT_FASTCALL script(const QChar &ch) { + inline int script(const QChar &ch) { return script(ch.unicode()); } |