From 16df4538561f443d98fc7ed7bdb95ba674cf58c4 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Mon, 3 Feb 2003 08:16:52 +0000 Subject: [PATCH] fix compile err --- src/screen.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/screen.cc b/src/screen.cc index 36e6ae0d..adcae6d9 100644 --- a/src/screen.cc +++ b/src/screen.cc @@ -261,10 +261,12 @@ void Screen::calcArea() #endif // XINERAMA */ - if (old_area != _area) + if (old_area != _area) { // the area has changed, adjust all the maximized windows + Client::List::iterator it, end = clients.end(); for (it = clients.begin(); it != end; ++it) (*it)->remaximize(); + } changeWorkArea(); } -- 2.39.2