forked from qt-creator/qt-creator
Merge branch '2.3'
Conflicts: qtcreator.pri src/plugins/qmlprojectmanager/qmlprojectruncontrol.cpp src/plugins/remotelinux/maemodeploystepfactory.cpp src/plugins/remotelinux/maemodirectdeviceuploadstep.cpp Change-Id: I195163713145e72df20aec4ac9058f0c9158083e
This commit is contained in:
@@ -39,7 +39,7 @@
|
||||
|
||||
#include <QtNetwork/QNetworkReply>
|
||||
|
||||
#include <coreplugin/networkaccessmanager.h>
|
||||
#include <utils/networkaccessmanager.h>
|
||||
|
||||
enum { debug = 0 };
|
||||
|
||||
@@ -529,7 +529,7 @@ void Gitorious::slotReplyFinished()
|
||||
QNetworkReply *Gitorious::createRequest(const QUrl &url, int protocol, int hostIndex, int page)
|
||||
{
|
||||
if (!m_networkManager)
|
||||
m_networkManager = new Core::NetworkAccessManager(this);
|
||||
m_networkManager = new Utils::NetworkAccessManager(this);
|
||||
QNetworkReply *reply = m_networkManager->get(QNetworkRequest(url));
|
||||
connect(reply, SIGNAL(finished()), this, SLOT(slotReplyFinished()));
|
||||
reply->setProperty(protocolPropertyC, QVariant(protocol));
|
||||
|
||||
Reference in New Issue
Block a user