##// END OF EJS Templates
Updates signal to be valid on Windows
Alexandre Leroux -
r383:3b72dcd75740
parent child
Show More
@@ -43,8 +43,11 AmdaProvider::AmdaProvider()
43 << QThread::currentThread();
43 << QThread::currentThread();
44 if (auto app = sqpApp) {
44 if (auto app = sqpApp) {
45 auto &networkController = app->networkController();
45 auto &networkController = app->networkController();
46 connect(this, &AmdaProvider::requestConstructed, &networkController,
46 connect(this, SIGNAL(requestConstructed(QNetworkRequest, QUuid,
47 &NetworkController::onProcessRequested);
47 std::function<void(QNetworkReply *, QUuid)>)),
48 &networkController,
49 SLOT(onProcessRequested(QNetworkRequest, QUuid,
50 std::function<void(QNetworkReply *, QUuid)>)));
48 }
51 }
49 }
52 }
50
53
General Comments 0
You need to be logged in to leave comments. Login now