summaryrefslogtreecommitdiffstats
path: root/api/logic/settings/PassthroughSetting.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'api/logic/settings/PassthroughSetting.cpp')
-rw-r--r--api/logic/settings/PassthroughSetting.cpp60
1 files changed, 30 insertions, 30 deletions
diff --git a/api/logic/settings/PassthroughSetting.cpp b/api/logic/settings/PassthroughSetting.cpp
index 5da5d11c..beee4152 100644
--- a/api/logic/settings/PassthroughSetting.cpp
+++ b/api/logic/settings/PassthroughSetting.cpp
@@ -1,4 +1,4 @@
-/* Copyright 2013-2018 MultiMC Contributors
+/* Copyright 2013-2019 MultiMC Contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -16,54 +16,54 @@
#include "PassthroughSetting.h"
PassthroughSetting::PassthroughSetting(std::shared_ptr<Setting> other, std::shared_ptr<Setting> gate)
- : Setting(other->configKeys(), QVariant())
+ : Setting(other->configKeys(), QVariant())
{
- Q_ASSERT(other);
- m_other = other;
- m_gate = gate;
+ Q_ASSERT(other);
+ m_other = other;
+ m_gate = gate;
}
bool PassthroughSetting::isOverriding() const
{
- if(!m_gate)
- {
- return false;
- }
- return m_gate->get().toBool();
+ if(!m_gate)
+ {
+ return false;
+ }
+ return m_gate->get().toBool();
}
QVariant PassthroughSetting::defValue() const
{
- if(isOverriding())
- {
- return m_other->get();
- }
- return m_other->defValue();
+ if(isOverriding())
+ {
+ return m_other->get();
+ }
+ return m_other->defValue();
}
QVariant PassthroughSetting::get() const
{
- if(isOverriding())
- {
- return Setting::get();
- }
- return m_other->get();
+ if(isOverriding())
+ {
+ return Setting::get();
+ }
+ return m_other->get();
}
void PassthroughSetting::reset()
{
- if(isOverriding())
- {
- Setting::reset();
- }
- m_other->reset();
+ if(isOverriding())
+ {
+ Setting::reset();
+ }
+ m_other->reset();
}
void PassthroughSetting::set(QVariant value)
{
- if(isOverriding())
- {
- Setting::set(value);
- }
- m_other->set(value);
+ if(isOverriding())
+ {
+ Setting::set(value);
+ }
+ m_other->set(value);
}