Adjust to renamed KWin::Output class

This commit is contained in:
Nicolas Fella 2025-11-26 17:46:31 +01:00
parent f0dd24e8bd
commit 37dcef56d9
3 changed files with 3 additions and 3 deletions

View file

@ -56,7 +56,7 @@ void EffectTouchBorder::setBorders(const QList<int> &touchActivateBorders)
m_touchBorderActivate.append(ElectricBorder(border));
effects->registerRealtimeTouchBorder(ElectricBorder(border),
m_state->activateAction(),
[this](ElectricBorder border, const QPointF &deltaProgress, const Output *screen) {
[this](ElectricBorder border, const QPointF &deltaProgress, const LogicalOutput *screen) {
Q_UNUSED(screen)
m_state->setInProgress(true);

View file

@ -50,7 +50,7 @@ QString TaskFilterModel::screenName() const
void TaskFilterModel::setScreenName(const QString &screen)
{
Output *output = kwinApp()->outputBackend()->findOutput(screen);
LogicalOutput *output = kwinApp()->outputBackend()->findOutput(screen);
if (m_output != output) {
m_output = output;
Q_EMIT screenNameChanged();

View file

@ -43,7 +43,7 @@ Q_SIGNALS:
private:
TaskModel *m_taskModel = nullptr;
QPointer<Output> m_output;
QPointer<LogicalOutput> m_output;
};
} // namespace KWin