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-09-17 01:52:28 +0400
committerDaniel Molkentin <danimo@owncloud.com>2014-09-17 01:52:28 +0400
commitfe023e2229dedbc646ab7e701ecd1a457dadef16 (patch)
tree6d5043bab768c9d09d0afe91cd63fbe48315159c /src/wizard
parent97cc05eeea3da08ee01578b1604ed0bc3b0b7d7e (diff)
Allow passing user/pass explicitly or via netrc
#2211
Diffstat (limited to 'src/wizard')
-rw-r--r--src/wizard/owncloudhttpcredspage.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wizard/owncloudhttpcredspage.cpp b/src/wizard/owncloudhttpcredspage.cpp
index e150af2d3..d6f7a9cd6 100644
--- a/src/wizard/owncloudhttpcredspage.cpp
+++ b/src/wizard/owncloudhttpcredspage.cpp
@@ -148,7 +148,7 @@ void OwncloudHttpCredsPage::setErrorString(const QString& err)
AbstractCredentials* OwncloudHttpCredsPage::getCredentials() const
{
- return new HttpCredentials(_ui.leUsername->text(), _ui.lePassword->text());
+ return new HttpCredentialsGui(_ui.leUsername->text(), _ui.lePassword->text());
}
void OwncloudHttpCredsPage::setConfigExists(bool config)