[plasma/kwin] src/plugins/private: Port ExpoArea to RectF
Vlad Zahorodnii <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit 764a6f6b837249d19d47abd966541c6eb3d37337 by Vlad Zahorodnii.
Committed on 23/07/2026 at 06:04.
Pushed by vladz into branch 'master'.
Port ExpoArea to RectF
M +1 -1 src/plugins/private/expoarea.cpp
M +1 -1 src/plugins/private/expoarea.h
https://invent.kde.org/plasma/kwin/-/commit/764a6f6b837249d19d47abd966541c6eb3d37337
diff --git a/src/plugins/private/expoarea.cpp b/src/plugins/private/expoarea.cpp
index ceeea38a0e8..011408ae638 100644
--- a/src/plugins/private/expoarea.cpp
+++ b/src/plugins/private/expoarea.cpp
@@ -61,7 +61,7 @@ void ExpoArea::update()
if (!m_screen) {
return;
}
- const QRectF oldRect = m_rect;
+ const RectF oldRect = m_rect;
m_rect = workspace()->clientArea(MaximizeArea, m_screen);
diff --git a/src/plugins/private/expoarea.h b/src/plugins/private/expoarea.h
index 778bcb673da..0e4e7177e90 100644
--- a/src/plugins/private/expoarea.h
+++ b/src/plugins/private/expoarea.h
@@ -41,7 +41,7 @@ Q_SIGNALS:
private:
void update();
- QRectF m_rect;
+ RectF m_rect;
LogicalOutput *m_screen = nullptr;
};