summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2016-09-12 12:47:37 +0200
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2016-09-22 06:48:03 +0000
commite5878886ed8261fb5d3e1fb93595be03e8f12b8d (patch)
tree6132ff8ea68dc923e59f6baf8f511aa209538de1
parentc3b34277bc7b602185b2f4eccd19af270aa6b09d (diff)
Fix dumping of IDL for 64bit integer types
Replace no longer applicable CY by modern hyper type. Task-number: QTBUG-55900 Change-Id: I00c50aa2b630f8f47acf9b1d2241b950a4ae1722 Reviewed-by: Fredrik Orderud <forderud@gmail.com> Reviewed-by: Andy Shaw <andy.shaw@qt.io>
-rw-r--r--src/activeqt/control/qaxserver.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/activeqt/control/qaxserver.cpp b/src/activeqt/control/qaxserver.cpp
index b02c38b..35a32dd 100644
--- a/src/activeqt/control/qaxserver.cpp
+++ b/src/activeqt/control/qaxserver.cpp
@@ -490,10 +490,10 @@ static const char* const type_map[][2] =
{ "QVariant", "VARIANT" },
{ "QVariantList", "SAFEARRAY(VARIANT)" },
{ "QList<QVariant>", "SAFEARRAY(VARIANT)" },
- { "quint64", "CY" },
- { "qint64", "CY" },
- { "qulonglong", "CY" },
- { "qlonglong", "CY" },
+ { "quint64", "unsigned hyper" },
+ { "qint64", "hyper" },
+ { "qulonglong", "unsigned hyper" },
+ { "qlonglong", "hyper" },
{ "QByteArray", "SAFEARRAY(BYTE)" },
{ "QStringList", "SAFEARRAY(BSTR)" },
// Userdefined Qt datatypes - some not on Borland though