diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2019-10-05 07:38:14 -0400 |
|---|---|---|
| committer | isanae <14251494+isanae@users.noreply.github.com> | 2019-10-05 07:38:14 -0400 |
| commit | 897d315359718712a8e6b160c279f563f7436367 (patch) | |
| tree | ac3f68378fd7fa117ff631af5d833009a428afd1 /src/profile.cpp | |
| parent | 1dc39621998457ab09765520f6cce4e266eaa8db (diff) | |
fixes for VS preview: missing namespace, missing setting() with two parameters
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) { |
