mirror of
https://github.com/overte-org/overte.git
synced 2025-08-06 18:50:00 +02:00
use old signal/slot notation in OAuthWebViewHandler
This commit is contained in:
parent
59ad09bfda
commit
2dacc81960
1 changed files with 1 additions and 1 deletions
|
@ -88,7 +88,7 @@ void OAuthWebViewHandler::displayWebviewForAuthorizationURL(const QUrl& authoriz
|
||||||
connect(_activeWebView, &QWebView::loadFinished, this, &OAuthWebViewHandler::handleLoadFinished);
|
connect(_activeWebView, &QWebView::loadFinished, this, &OAuthWebViewHandler::handleLoadFinished);
|
||||||
|
|
||||||
// connect to the destroyed signal so after the web view closes we can start a timer
|
// connect to the destroyed signal so after the web view closes we can start a timer
|
||||||
connect(_activeWebView, &QWebView::destroyed, this, &OAuthWebViewHandler::handleWebViewDestroyed);
|
connect(_activeWebView, SIGNAL(destroyed(QObject*)), this, SLOT(handleWebViewDestroyed(QObject*)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue