const'ify Platform::findOutput()

master
Vlad Zahorodnii 4 years ago
parent e88033f914
commit 62432133e0

@ -164,12 +164,12 @@ void Platform::requestOutputsChange(KWaylandServer::OutputConfigurationInterface
config->setApplied(); config->setApplied();
} }
AbstractOutput *Platform::findOutput(int screenId) AbstractOutput *Platform::findOutput(int screenId) const
{ {
return enabledOutputs().value(screenId); return enabledOutputs().value(screenId);
} }
AbstractOutput *Platform::findOutput(const QUuid &uuid) AbstractOutput *Platform::findOutput(const QUuid &uuid) const
{ {
const auto outs = outputs(); const auto outs = outputs();
auto it = std::find_if(outs.constBegin(), outs.constEnd(), auto it = std::find_if(outs.constBegin(), outs.constEnd(),

@ -428,8 +428,8 @@ public:
virtual Outputs enabledOutputs() const { virtual Outputs enabledOutputs() const {
return Outputs(); return Outputs();
} }
AbstractOutput *findOutput(int screenId); AbstractOutput *findOutput(int screenId) const;
AbstractOutput *findOutput(const QUuid &uuid); AbstractOutput *findOutput(const QUuid &uuid) const;
/** /**
* A string of information to include in kwin debug output * A string of information to include in kwin debug output

Loading…
Cancel
Save