aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cpaster/urlopenprotocol.cpp
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@digia.com>2013-04-09 09:58:17 +0200
committerFriedemann Kleint <Friedemann.Kleint@digia.com>2013-04-09 11:39:56 +0200
commit9d7e786b03b5af13048471a23d9f4ccb34b32d8e (patch)
treeacd4a0fdbad7d3817eccbe69d8e2ad920e7bc34b /src/plugins/cpaster/urlopenprotocol.cpp
parent2ead48fb2674c26aede63382277e9647f93e6586 (diff)
Provide instance()-method for Utils::NetworkAccessManager.
Preemptively fix exit warning "QEventLoop cannot be used without QApplication" (Qt 5/dev) emitted by destruction of the of the generic highlighter manager singleton which had a member of type Utils::NetworkAccessManager. Use a single instance of Utils::NetworkAccessManager for the main thread and clean up properly using a qAddPostRoutine(). Change-Id: Ida57b9028a79eb4927818ce49088ea567f3bdfd6 Reviewed-by: hjk <hjk121@nokiamail.com> Reviewed-by: Peter Hartmann <phartmann@blackberry.com> Reviewed-by: Eike Ziller <eike.ziller@digia.com>
Diffstat (limited to 'src/plugins/cpaster/urlopenprotocol.cpp')
-rw-r--r--src/plugins/cpaster/urlopenprotocol.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/cpaster/urlopenprotocol.cpp b/src/plugins/cpaster/urlopenprotocol.cpp
index f2e429e671f..3c1e102c408 100644
--- a/src/plugins/cpaster/urlopenprotocol.cpp
+++ b/src/plugins/cpaster/urlopenprotocol.cpp
@@ -35,8 +35,8 @@
using namespace CodePaster;
-UrlOpenProtocol::UrlOpenProtocol(const NetworkAccessManagerProxyPtr &nw)
- : NetworkProtocol(nw), m_fetchReply(0)
+UrlOpenProtocol::UrlOpenProtocol()
+ : m_fetchReply(0)
{
}