summaryrefslogtreecommitdiff
path: root/settings.cpp
diff options
context:
space:
mode:
authorBrian Potchik <brian@vector35.com>2020-06-20 13:28:19 -0400
committerBrian Potchik <brian@vector35.com>2020-06-20 13:28:19 -0400
commit1d6edd6eb2babad933ff69203ea932fd51b478c2 (patch)
treeedd8f13cce96d5f135a292dbbae70657d9a191d5 /settings.cpp
parent3d9e96f84d781d1de57af895864d3183d2729a7a (diff)
Remove CopyValuesFrom Settings API.
Diffstat (limited to 'settings.cpp')
-rw-r--r--settings.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/settings.cpp b/settings.cpp
index 26448937..e963a6d1 100644
--- a/settings.cpp
+++ b/settings.cpp
@@ -181,12 +181,6 @@ string Settings::SerializeSettings(Ref<BinaryView> view, BNSettingsScope scope)
}
-bool Settings::CopyValuesFrom(Ref<Settings> source, BNSettingsScope scope)
-{
- return BNSettingsCopyValuesFrom(m_object, source->GetObject(), scope);
-}
-
-
bool Settings::Reset(const string& key, Ref<BinaryView> view, BNSettingsScope scope)
{
return BNSettingsReset(m_object, key.c_str(), view ? view->GetObject() : nullptr, scope);