Delete unnecessary explicit return

This commit is contained in:
sledgehammer999 2019-12-19 17:57:36 +02:00
parent 8fa6e372a2
commit 1121316926
No known key found for this signature in database
GPG Key ID: 6E4A2D025B7CC9A2

View File

@ -781,7 +781,7 @@ bool Preferences::isUILocked() const
void Preferences::setUILocked(const bool locked)
{
return setValue("Locking/locked", locked);
setValue("Locking/locked", locked);
}
bool Preferences::isAutoRunEnabled() const
@ -791,7 +791,7 @@ bool Preferences::isAutoRunEnabled() const
void Preferences::setAutoRunEnabled(const bool enabled)
{
return setValue("AutoRun/enabled", enabled);
setValue("AutoRun/enabled", enabled);
}
QString Preferences::getAutoRunProgram() const