mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01: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 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