Drop Output::updateEnablement()

It's unused since moving placeholder output handling to the workspace.
This commit is contained in:
Vlad Zahorodnii 2022-08-29 09:54:05 +03:00
parent c6de04773c
commit 76f3e1ec20
2 changed files with 0 additions and 6 deletions

View file

@ -268,7 +268,6 @@ void Output::setState(const State &state)
Q_EMIT rgbRangeChanged();
}
if (oldState.enabled != state.enabled) {
updateEnablement(state.enabled);
Q_EMIT enabledChanged();
}
}

View file

@ -321,11 +321,6 @@ protected:
void setInformation(const Information &information);
void setState(const State &state);
virtual void updateEnablement(bool enable)
{
Q_UNUSED(enable);
}
QSize orientateSize(const QSize &size) const;
EffectScreenImpl *m_effectScreen = nullptr;