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:
authorOlivier Goffart <ogoffart@woboq.com>2014-06-20 14:03:07 +0400
committerOlivier Goffart <ogoffart@woboq.com>2014-06-20 14:08:58 +0400
commit3e916cfbb91831bcf0b871e4664ee681adaf7d7a (patch)
treec34bc94673f12c27ba8ebf5de95023fe35ea2605 /src/wizard
parent4a9ad14e116724ad75142af77428955998e8a6d8 (diff)
remove unused member
CID 12915 CID 12926
Diffstat (limited to 'src/wizard')
-rw-r--r--src/wizard/owncloudsetuppage.cpp2
-rw-r--r--src/wizard/owncloudsetuppage.h3
2 files changed, 0 insertions, 5 deletions
diff --git a/src/wizard/owncloudsetuppage.cpp b/src/wizard/owncloudsetuppage.cpp
index abe63bd6d..da1e54a83 100644
--- a/src/wizard/owncloudsetuppage.cpp
+++ b/src/wizard/owncloudsetuppage.cpp
@@ -255,8 +255,6 @@ void OwncloudSetupPage::stopSpinner()
void OwncloudSetupPage::setConfigExists( bool config )
{
- _configExists = config;
-
if (config == true) {
setSubTitle(WizardCommon::subTitleTemplate().arg(tr("Update %1 server")
.arg(Theme::instance()->appNameGUI())));
diff --git a/src/wizard/owncloudsetuppage.h b/src/wizard/owncloudsetuppage.h
index 546e6a0ba..7161a3665 100644
--- a/src/wizard/owncloudsetuppage.h
+++ b/src/wizard/owncloudsetuppage.h
@@ -68,12 +68,9 @@ private:
QString _ocUser;
bool _authTypeKnown;
bool _checking;
- bool _configExists;
- bool _multipleFoldersExist;
WizardCommon::AuthType _authType;
QProgressIndicator* _progressIndi;
- QButtonGroup* _selectiveSyncButtons;
QString _remoteFolder;
};