diff --git a/src/network/kernel/qdnslookup.cpp b/src/network/kernel/qdnslookup.cpp index ce3458ed14e..d84374ab974 100644 --- a/src/network/kernel/qdnslookup.cpp +++ b/src/network/kernel/qdnslookup.cpp @@ -336,7 +336,7 @@ quint16 QDnsLookup::defaultPortForProtocol(Protocol protocol) noexcept */ /*! - \fn void QDnsLookup::typeChanged(Type type) + \fn void QDnsLookup::typeChanged(QDnsLookup::Type type) This signal is emitted when the lookup \l type changes. \a type is the new lookup type. diff --git a/src/network/kernel/qdnslookup.h b/src/network/kernel/qdnslookup.h index 1dbfc910fee..0cf601698f7 100644 --- a/src/network/kernel/qdnslookup.h +++ b/src/network/kernel/qdnslookup.h @@ -322,10 +322,10 @@ public Q_SLOTS: Q_SIGNALS: void finished(); void nameChanged(const QString &name); - void typeChanged(Type type); + void typeChanged(QDnsLookup::Type type); void nameserverChanged(const QHostAddress &nameserver); void nameserverPortChanged(quint16 port); - void nameserverProtocolChanged(Protocol protocol); + void nameserverProtocolChanged(QDnsLookup::Protocol protocol); private: Q_DECLARE_PRIVATE(QDnsLookup)