NOISSUE tabs -> spaces

This commit is contained in:
Petr Mrázek
2018-07-15 14:51:05 +02:00
parent 03280cc62e
commit bbb3b3e6f6
577 changed files with 51938 additions and 51938 deletions

View File

@ -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);
}