diff options
author | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2023-07-18 15:49:36 -0400 |
---|---|---|
committer | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2023-07-21 10:56:55 -0400 |
commit | 32116231924bfc1ad356fc0f39df327a393b8df1 (patch) | |
tree | 61ffe216c4246ee63f387169cc2eecb0dc80e216 /src/common/settings_common.cpp | |
parent | b02e7eea78cf5d5f3631b11a58f28d0888948fc0 (diff) |
common: Move global configuration state modifiers back to settings
Diffstat (limited to 'src/common/settings_common.cpp')
-rw-r--r-- | src/common/settings_common.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/common/settings_common.cpp b/src/common/settings_common.cpp index 8b666f8b2..1439fb451 100644 --- a/src/common/settings_common.cpp +++ b/src/common/settings_common.cpp @@ -52,14 +52,4 @@ const std::string& BasicSetting::GetLabel() const { return label; } -static bool configuring_global = true; - -bool IsConfiguringGlobal() { - return configuring_global; -} - -void SetConfiguringGlobal(bool is_global) { - configuring_global = is_global; -} - } // namespace Settings |