summaryrefslogtreecommitdiffstats
path: root/core/subsurface-qt/SettingsObjectWrapper.cpp
diff options
context:
space:
mode:
authorGravatar Tomaz Canabrava <tcanabrava@kde.org>2016-10-15 20:26:34 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2016-10-15 12:24:05 -0700
commit9c4b0170bfc321a31c6f3d0f7cd34edfa74fe1f4 (patch)
tree951fd3e66b4200dff28bbe80bef3ce458955d248 /core/subsurface-qt/SettingsObjectWrapper.cpp
parentc1fbc70d83cb8a3755120c5d0203a20806b94c6d (diff)
downloadsubsurface-9c4b0170bfc321a31c6f3d0f7cd34edfa74fe1f4.tar.gz
Make all current written tests pass
Fixes a couple of issues with the tests. Also, a type in prefs.h is "short" while it's actually a boolean, this made me write the wrong testcase for this. Fixed this by setting the Qt wrapper to bool, but I didn't changed the c implementation because I tought I could break something. Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'core/subsurface-qt/SettingsObjectWrapper.cpp')
-rw-r--r--core/subsurface-qt/SettingsObjectWrapper.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/subsurface-qt/SettingsObjectWrapper.cpp b/core/subsurface-qt/SettingsObjectWrapper.cpp
index 417b90411..009ca6403 100644
--- a/core/subsurface-qt/SettingsObjectWrapper.cpp
+++ b/core/subsurface-qt/SettingsObjectWrapper.cpp
@@ -866,7 +866,7 @@ int ProxySettings::port() const
return prefs.proxy_port;
}
-short ProxySettings::auth() const
+bool ProxySettings::auth() const
{
return prefs.proxy_auth;
}
@@ -915,7 +915,7 @@ void ProxySettings::setPort(int value)
emit portChanged(value);
}
-void ProxySettings::setAuth(short value)
+void ProxySettings::setAuth(bool value)
{
if (value == prefs.proxy_auth)
return;