Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Molkentin <danimo@owncloud.com>2014-02-19 18:34:29 +0400
committerDaniel Molkentin <danimo@owncloud.com>2014-02-19 18:34:43 +0400
commit726b41b0c787fcc104e0cd4159bdc6f90a06ea85 (patch)
tree702343527d3cfe4fcdfa062626045a952994b36a /src/wizard
parente74f0f285499d29311620d556ce728e9c47980f6 (diff)
Shib: Close browser window after login
Diffstat (limited to 'src/wizard')
-rw-r--r--src/wizard/owncloudshibbolethcredspage.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wizard/owncloudshibbolethcredspage.cpp b/src/wizard/owncloudshibbolethcredspage.cpp
index 533201517..036b4df45 100644
--- a/src/wizard/owncloudshibbolethcredspage.cpp
+++ b/src/wizard/owncloudshibbolethcredspage.cpp
@@ -38,8 +38,8 @@ void OwncloudShibbolethCredsPage::setupBrowser()
}
OwncloudWizard *ocWizard = qobject_cast<OwncloudWizard*>(wizard());
_browser = new ShibbolethWebView(ocWizard->account());
- connect(_browser, SIGNAL(shibbolethCookieReceived(QNetworkCookie)),
- this, SLOT(slotShibbolethCookieReceived(QNetworkCookie)));
+ connect(_browser, SIGNAL(shibbolethCookieReceived(QNetworkCookie, Account*)),
+ this, SLOT(slotShibbolethCookieReceived(QNetworkCookie, Account*)));
connect(_browser, SIGNAL(viewHidden()),
this, SLOT(slotViewHidden()));
connect(_browser, SIGNAL(otherCookiesReceived(QList<QNetworkCookie>, QUrl)),