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-05-15 11:43:07 +0400
committerDaniel Molkentin <danimo@owncloud.com>2014-05-15 11:43:26 +0400
commitde970eb0a50c8062768ad9e27f3740a5be730082 (patch)
tree9eeae5f7284579bbcb2b46865f12369c2b38dc3a /src/wizard
parent7a28b44128c2d84026f62b53faf8318f8484fe96 (diff)
Fix wizard flow with shibboleth
Diffstat (limited to 'src/wizard')
-rw-r--r--src/wizard/owncloudshibbolethcredspage.cpp6
-rw-r--r--src/wizard/owncloudshibbolethcredspage.h2
2 files changed, 4 insertions, 4 deletions
diff --git a/src/wizard/owncloudshibbolethcredspage.cpp b/src/wizard/owncloudshibbolethcredspage.cpp
index 10d8639c6..a6b11eb6f 100644
--- a/src/wizard/owncloudshibbolethcredspage.cpp
+++ b/src/wizard/owncloudshibbolethcredspage.cpp
@@ -38,8 +38,8 @@ void OwncloudShibbolethCredsPage::setupBrowser()
_browser = new ShibbolethWebView(ocWizard->account());
connect(_browser, SIGNAL(shibbolethCookieReceived(const QNetworkCookie&, Account*)),
this, SLOT(slotShibbolethCookieReceived()));
- connect(_browser, SIGNAL(viewHidden()),
- this, SLOT(slotViewHidden()));
+ connect(_browser, SIGNAL(rejected()),
+ this, SLOT(slotBrowserRejected()));
_browser->move(ocWizard->x(), ocWizard->y());
_browser->show();
@@ -89,7 +89,7 @@ void OwncloudShibbolethCredsPage::slotShibbolethCookieReceived()
emit connectToOCUrl(field("OCUrl").toString().simplified());
}
-void OwncloudShibbolethCredsPage::slotViewHidden()
+void OwncloudShibbolethCredsPage::slotBrowserRejected()
{
wizard()->back();
wizard()->show();
diff --git a/src/wizard/owncloudshibbolethcredspage.h b/src/wizard/owncloudshibbolethcredspage.h
index 7b2e8be56..a9db292e5 100644
--- a/src/wizard/owncloudshibbolethcredspage.h
+++ b/src/wizard/owncloudshibbolethcredspage.h
@@ -47,7 +47,7 @@ public Q_SLOTS:
private Q_SLOTS:
void slotShibbolethCookieReceived();
- void slotViewHidden();
+ void slotBrowserRejected();
private:
void setupBrowser();