summaryrefslogtreecommitdiffstats
path: root/src/network/kernel/qhostinfo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/network/kernel/qhostinfo.cpp')
-rw-r--r--src/network/kernel/qhostinfo.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/network/kernel/qhostinfo.cpp b/src/network/kernel/qhostinfo.cpp
index dff87217d4..f71c6d8509 100644
--- a/src/network/kernel/qhostinfo.cpp
+++ b/src/network/kernel/qhostinfo.cpp
@@ -159,11 +159,11 @@ void QHostInfoResult::postResultsReady(const QHostInfo &info)
auto metaCallEvent = new QMetaCallEvent(slotObj, nullptr, signal_index, nargs);
Q_CHECK_PTR(metaCallEvent);
void **args = metaCallEvent->args();
- int *types = metaCallEvent->types();
+ QMetaType *types = metaCallEvent->types();
auto voidType = QMetaType::fromType<void>();
auto hostInfoType = QMetaType::fromType<QHostInfo>();
- types[0] = voidType.id();
- types[1] = hostInfoType.id();
+ types[0] = voidType;
+ types[1] = hostInfoType;
args[0] = nullptr;
args[1] = hostInfoType.create(&info);
Q_CHECK_PTR(args[1]);