Remove redundant const specifier

This commit is contained in:
Chocobo1 2021-09-21 17:18:43 +08:00
parent 1c9696b68e
commit 1c343a444b
No known key found for this signature in database
GPG key ID: 210D9C873253A68C
2 changed files with 2 additions and 2 deletions

View file

@ -92,7 +92,7 @@ void Preferences::freeInstance()
m_instance = nullptr;
}
const QVariant Preferences::value(const QString &key, const QVariant &defaultValue) const
QVariant Preferences::value(const QString &key, const QVariant &defaultValue) const
{
return SettingsStorage::instance()->loadValue(key, defaultValue);
}