diff options
author | jan Iversen <jani@apache.org> | 2018-09-02 16:22:16 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-09-11 17:25:00 -0700 |
commit | 684e334fb6098e604a91d140c1e2ea0883dff081 (patch) | |
tree | 99dd5050bb53385125aa5fa6dc69514acbc2b40e /tests/tst_qPrefCloudStorage.qml | |
parent | 4d57b52062ab902dee8d82e453eda586ce78ab3e (diff) | |
download | subsurface-684e334fb6098e604a91d140c1e2ea0883dff081.tar.gz |
core: declare cloud_status in qPrefCloudStorage
qml declaration of cloud_status (defined in pref.h) does not
belong in qPref.h but in qPrefCloudStorage
Signed-off-by: Jan Iversen <jani@apache.org>
Diffstat (limited to 'tests/tst_qPrefCloudStorage.qml')
-rw-r--r-- | tests/tst_qPrefCloudStorage.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/tst_qPrefCloudStorage.qml b/tests/tst_qPrefCloudStorage.qml index 02d5f9d21..a48fa672d 100644 --- a/tests/tst_qPrefCloudStorage.qml +++ b/tests/tst_qPrefCloudStorage.qml @@ -43,8 +43,8 @@ TestCase { compare(tst.cloud_timeout, 137) var x9 = tst.cloud_verification_status - tst.cloud_verification_status = SsrfPrefs.CS_VERIFIED - compare(tst.cloud_verification_status, SsrfPrefs.CS_VERIFIED) + tst.cloud_verification_status = tst.CS_VERIFIED + compare(tst.cloud_verification_status, tst.CS_VERIFIED) var x11 = tst.save_password_local tst.save_password_local = true |