summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Brasser <michael.brasser@nokia.com>2010-04-16 05:37:34 (GMT)
committerMichael Brasser <michael.brasser@nokia.com>2010-04-19 22:35:22 (GMT)
commit8d508cc1fe9d1ac528f90dcd88d95ac5b6687df8 (patch)
tree783491c11f9ba2629ebac504b33b168d916d42ef
parent096c7d37ec67a4db7b812debed5f51737ec38900 (diff)
downloadQt-8d508cc1fe9d1ac528f90dcd88d95ac5b6687df8.zip
Qt-8d508cc1fe9d1ac528f90dcd88d95ac5b6687df8.tar.gz
Qt-8d508cc1fe9d1ac528f90dcd88d95ac5b6687df8.tar.bz2
Doc clarification.
-rw-r--r--src/declarative/qml/qdeclarativenetworkaccessmanagerfactory.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/declarative/qml/qdeclarativenetworkaccessmanagerfactory.cpp b/src/declarative/qml/qdeclarativenetworkaccessmanagerfactory.cpp
index f5f1a1f..b116129 100644
--- a/src/declarative/qml/qdeclarativenetworkaccessmanagerfactory.cpp
+++ b/src/declarative/qml/qdeclarativenetworkaccessmanagerfactory.cpp
@@ -45,8 +45,8 @@ QT_BEGIN_NAMESPACE
/*!
\class QDeclarativeNetworkAccessManagerFactory
- \since 4.7
- \brief The QDeclarativeNetworkAccessManagerFactory class provides a factory for QNetworkAccessManager
+ \since 4.7
+ \brief The QDeclarativeNetworkAccessManagerFactory class provides a factory for QNetworkAccessManager for use by a Qt Declarative engine.
QNetworkAccessManager is used for all network access by QML.
By implementing a factory it is possible to create custom
@@ -82,6 +82,8 @@ QDeclarativeNetworkAccessManagerFactory::~QDeclarativeNetworkAccessManagerFactor
Implement this method to create a QNetworkAccessManager with \a parent.
This allows proxies, caching and cookie support to be setup appropriately.
+ This method should return a new QNetworkAccessManager each time it is called.
+
Note: this method may be called by multiple threads, so ensure the
implementation of this method is reentrant.
*/