mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
Adjust to renamed KWin::Output class
This commit is contained in:
parent
f0dd24e8bd
commit
37dcef56d9
3 changed files with 3 additions and 3 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
|
|
@ -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();
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ Q_SIGNALS:
|
|||
|
||||
private:
|
||||
TaskModel *m_taskModel = nullptr;
|
||||
QPointer<Output> m_output;
|
||||
QPointer<LogicalOutput> m_output;
|
||||
};
|
||||
|
||||
} // namespace KWin
|
||||
|
|
|
|||
Loading…
Reference in a new issue