summaryrefslogtreecommitdiffstats
path: root/src/corelib/tools
diff options
context:
space:
mode:
authorDenis Dzyubenko <denis.dzyubenko@nokia.com>2009-07-01 13:53:28 +0200
committerDenis Dzyubenko <denis.dzyubenko@nokia.com>2009-07-01 13:53:53 +0200
commitf3a6f4dc01f9d6c5c167a94ae49acff35ccc0c11 (patch)
tree624d6ece66e0ff03a291e3cdad094d20b570a3a8 /src/corelib/tools
parent9da6a1d34f1d06879ba9d72e9ad15bf261aea8c9 (diff)
Fixed the build on Windows after regenerating the unicode tables.
Reviewed-by: trustme
Diffstat (limited to 'src/corelib/tools')
-rw-r--r--src/corelib/tools/qunicodetables.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/corelib/tools/qunicodetables.cpp b/src/corelib/tools/qunicodetables.cpp
index 0387181437..c1030161cd 100644
--- a/src/corelib/tools/qunicodetables.cpp
+++ b/src/corelib/tools/qunicodetables.cpp
@@ -4336,13 +4336,13 @@ static inline const QUnicodeTables::Properties *qGetProp(ushort ucs2)
return uc_properties + index;
}
-Q_CORE_EXPORT const QUnicodeTables::Properties *QUnicodeTables::properties(uint ucs4)
+Q_CORE_EXPORT const QUnicodeTables::Properties * QT_FASTCALL QUnicodeTables::properties(uint ucs4)
{
int index = GET_PROP_INDEX(ucs4);
return uc_properties + index;
}
-Q_CORE_EXPORT const QUnicodeTables::Properties *QUnicodeTables::properties(ushort ucs2)
+Q_CORE_EXPORT const QUnicodeTables::Properties * QT_FASTCALL QUnicodeTables::properties(ushort ucs2)
{
int index = GET_PROP_INDEX_UCS2(ucs2);
return uc_properties + index;