core: remove double definition of enum cloud_storage_status

Remove cloud_storage_status from qmlprefs.h.
usage to qPref::

enum cloud_storage_status is not used from C, but only from C++, and
having the same structure defined multiple times is a maintenance
challenge.

Signed-off-by: Jan Iversen <jani@apache.org>
This commit is contained in:
jan Iversen 2018-06-16 10:08:34 +02:00 committed by Dirk Hohndel
parent d02a03983d
commit 2f95141330
8 changed files with 45 additions and 52 deletions

View file

@ -69,12 +69,12 @@ void QMLPrefs::setCloudUserName(const QString &cloudUserName)
emit cloudUserNameChanged();
}
QMLPrefs::cloud_status_qml QMLPrefs::credentialStatus() const
cloud_status QMLPrefs::credentialStatus() const
{
return m_credentialStatus;
}
void QMLPrefs::setCredentialStatus(const cloud_status_qml value)
void QMLPrefs::setCredentialStatus(const cloud_status value)
{
if (m_credentialStatus != value) {
setOldStatus(m_credentialStatus);
@ -105,12 +105,12 @@ void QMLPrefs::setDistanceThreshold(int distance)
emit distanceThresholdChanged();
}
QMLPrefs::cloud_status_qml QMLPrefs::oldStatus() const
cloud_status QMLPrefs::oldStatus() const
{
return m_oldStatus;
}
void QMLPrefs::setOldStatus(const cloud_status_qml value)
void QMLPrefs::setOldStatus(const cloud_status value)
{
if (m_oldStatus != value) {
m_oldStatus = value;