From 37dcef56d94fbfc70c12da59beafb4afee4d7bf8 Mon Sep 17 00:00:00 2001 From: Nicolas Fella Date: Wed, 26 Nov 2025 17:46:31 +0100 Subject: [PATCH] Adjust to renamed KWin::Output class --- kwin/mobiletaskswitcher/plugin/effecttouchborder.cpp | 2 +- kwin/mobiletaskswitcher/plugin/taskfiltermodel.cpp | 2 +- kwin/mobiletaskswitcher/plugin/taskfiltermodel.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/kwin/mobiletaskswitcher/plugin/effecttouchborder.cpp b/kwin/mobiletaskswitcher/plugin/effecttouchborder.cpp index f83c3144..b455781e 100644 --- a/kwin/mobiletaskswitcher/plugin/effecttouchborder.cpp +++ b/kwin/mobiletaskswitcher/plugin/effecttouchborder.cpp @@ -56,7 +56,7 @@ void EffectTouchBorder::setBorders(const QList &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); diff --git a/kwin/mobiletaskswitcher/plugin/taskfiltermodel.cpp b/kwin/mobiletaskswitcher/plugin/taskfiltermodel.cpp index 0bb8316e..821d4f25 100644 --- a/kwin/mobiletaskswitcher/plugin/taskfiltermodel.cpp +++ b/kwin/mobiletaskswitcher/plugin/taskfiltermodel.cpp @@ -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(); diff --git a/kwin/mobiletaskswitcher/plugin/taskfiltermodel.h b/kwin/mobiletaskswitcher/plugin/taskfiltermodel.h index 2075e8cb..87244cc7 100644 --- a/kwin/mobiletaskswitcher/plugin/taskfiltermodel.h +++ b/kwin/mobiletaskswitcher/plugin/taskfiltermodel.h @@ -43,7 +43,7 @@ Q_SIGNALS: private: TaskModel *m_taskModel = nullptr; - QPointer m_output; + QPointer m_output; }; } // namespace KWin