aboutsummaryrefslogtreecommitdiff
path: root/src/Window.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/Window.cc')
-rw-r--r--src/Window.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Window.cc b/src/Window.cc
index 2eecc1e..fe97517 100644
--- a/src/Window.cc
+++ b/src/Window.cc
@@ -2496,10 +2496,10 @@ void FluxboxWindow::propertyNotifyEvent(WinClient &client, Atom atom) {
2496#ifdef DEBUG 2496#ifdef DEBUG
2497 cerr<<"XA_WM_NORMAL_HINTS("<<title()<<")"<<endl; 2497 cerr<<"XA_WM_NORMAL_HINTS("<<title()<<")"<<endl;
2498#endif // DEBUG 2498#endif // DEBUG
2499 int old_max_width = client.max_width; 2499 unsigned int old_max_width = client.max_width;
2500 int old_min_width = client.min_width; 2500 unsigned int old_min_width = client.min_width;
2501 int old_min_height = client.min_height; 2501 unsigned int old_min_height = client.min_height;
2502 int old_max_height = client.max_height; 2502 unsigned int old_max_height = client.max_height;
2503 bool changed = false; 2503 bool changed = false;
2504 client.updateWMNormalHints(); 2504 client.updateWMNormalHints();
2505 2505