summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOliver Wolff <oliver.wolff@digia.com>2012-11-30 15:01:19 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2012-12-01 08:31:46 +0100
commit43169abdf8691feea6e161eaf64c5b603420356c (patch)
treec7cc153f86f217769532f088a420615b01b130cc
parent93fe107b3afd0a03ba1ef16f72e49d1f54c19a40 (diff)
Docs: Fixed enum and parameter links for network
Change-Id: Ie04e09d91e9b0781dc3bcbfe271c851fbe486849 Reviewed-by: David Schulz <david.schulz@digia.com>
-rw-r--r--src/network/access/qnetworkaccessmanager.cpp2
-rw-r--r--src/network/bearer/qnetworksession.cpp4
-rw-r--r--src/network/bearer/qnetworksession.h2
3 files changed, 4 insertions, 4 deletions
diff --git a/src/network/access/qnetworkaccessmanager.cpp b/src/network/access/qnetworkaccessmanager.cpp
index 1118c3242f..a1a7a7dd96 100644
--- a/src/network/access/qnetworkaccessmanager.cpp
+++ b/src/network/access/qnetworkaccessmanager.cpp
@@ -347,7 +347,7 @@ static void ensureInitialized()
\note To have the request not send credentials you must not call
setUser() or setPassword() on the \a authenticator object. This
will result in the \l finished() signal being emitted with a
- \l QNetworkReply with error \l AuthenticationRequiredError.
+ \l QNetworkReply with error \l {QNetworkReply::} {AuthenticationRequiredError}.
\note It is not possible to use a QueuedConnection to connect to
this signal, as the connection will fail if the authenticator has
diff --git a/src/network/bearer/qnetworksession.cpp b/src/network/bearer/qnetworksession.cpp
index 6527065ac2..79611aa3fa 100644
--- a/src/network/bearer/qnetworksession.cpp
+++ b/src/network/bearer/qnetworksession.cpp
@@ -235,10 +235,10 @@ QT_BEGIN_NAMESPACE
*/
/*!
- \fn void QNetworkSession::usagePoliciesChanged(UsagePolicies)
+ \fn void QNetworkSession::usagePoliciesChanged(QNetworkSession::UsagePolicies usagePolicies)
\since 5.0
- This signal is emitted when the \a UsagePolicies in force are changed by the system.
+ This signal is emitted when the \a usagePolicies in force are changed by the system.
*/
/*!
diff --git a/src/network/bearer/qnetworksession.h b/src/network/bearer/qnetworksession.h
index b934120f0a..2e30a50bf9 100644
--- a/src/network/bearer/qnetworksession.h
+++ b/src/network/bearer/qnetworksession.h
@@ -131,7 +131,7 @@ Q_SIGNALS:
void error(QNetworkSession::SessionError);
void preferredConfigurationChanged(const QNetworkConfiguration &config, bool isSeamless);
void newConfigurationActivated();
- void usagePoliciesChanged(QNetworkSession::UsagePolicies);
+ void usagePoliciesChanged(QNetworkSession::UsagePolicies usagePolicies);
protected:
virtual void connectNotify(const QMetaMethod &signal);