diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2019-10-05 08:33:01 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-10-05 08:33:01 -0400 |
| commit | 4921d2a0dd1726e48b520e341e10b775be0174ce (patch) | |
| tree | 13806af16ad83f80bc7aa740ac8df7c275e9c478 /src/profile.cpp | |
| parent | 8aa298b606900d62cdd01f5c762a334799625763 (diff) | |
| parent | 93423f63512f7d7e6d21bc8e75fc1a17bdba28aa (diff) | |
Merge pull request #850 from isanae/blocked-files
Blocked files
Diffstat (limited to 'src/profile.cpp')
| -rw-r--r-- | src/profile.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/profile.cpp b/src/profile.cpp index e76060b9..f2360674 100644 --- a/src/profile.cpp +++ b/src/profile.cpp @@ -917,6 +917,11 @@ QVariant Profile::setting(const QString §ion, const QString &name, return m_Settings->value(section + "/" + name, fallback); } +QVariant Profile::setting(const QString &name, const QVariant &fallback) const +{ + return m_Settings->value(name, fallback); +} + void Profile::storeSetting(const QString §ion, const QString &name, const QVariant &value) { |
