diff options
author | mathias <mathias> | 2006-01-16 18:46:39 (GMT) |
---|---|---|
committer | mathias <mathias> | 2006-01-16 18:46:39 (GMT) |
commit | f803d8f2502796993a838783eeaf81b17f2faca0 (patch) | |
tree | 782146499f4c588c66ca7eab4309f5902ecb6a9c /src/Window.cc | |
parent | b7ddb0ca13278d7b5a3a45ef03fd394b9b387bf3 (diff) | |
download | fluxbox_pavel-f803d8f2502796993a838783eeaf81b17f2faca0.zip fluxbox_pavel-f803d8f2502796993a838783eeaf81b17f2faca0.tar.bz2 |
applied patch from php-coder to fix some warnings, mostly signed vs unsigned
issues
Diffstat (limited to 'src/Window.cc')
-rw-r--r-- | src/Window.cc | 8 |
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 | ||