Use fully qualified signal arguments in QDnsLookup

Detected by an Axivion scan.

Task-number: QTBUG-125026
Change-Id: I426ee40d5bfd6c473a90e76d207817596f7aab0f
Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
(cherry picked from commit ecd38b85dc80f899b685d3c6c031dcabb3c63211)
Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
This commit is contained in:
Mate Barany 2024-06-17 15:35:22 +02:00 committed by Qt Cherry-pick Bot
parent 766244e033
commit 7a41956df0
2 changed files with 3 additions and 3 deletions

View File

@ -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. This signal is emitted when the lookup \l type changes.
\a type is the new lookup type. \a type is the new lookup type.

View File

@ -322,10 +322,10 @@ public Q_SLOTS:
Q_SIGNALS: Q_SIGNALS:
void finished(); void finished();
void nameChanged(const QString &name); void nameChanged(const QString &name);
void typeChanged(Type type); void typeChanged(QDnsLookup::Type type);
void nameserverChanged(const QHostAddress &nameserver); void nameserverChanged(const QHostAddress &nameserver);
void nameserverPortChanged(quint16 port); void nameserverPortChanged(quint16 port);
void nameserverProtocolChanged(Protocol protocol); void nameserverProtocolChanged(QDnsLookup::Protocol protocol);
private: private:
Q_DECLARE_PRIVATE(QDnsLookup) Q_DECLARE_PRIVATE(QDnsLookup)