diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-03-18 17:48:29 +0200 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-03-18 17:49:00 +0200 |
commit | f98d003e354a1792117b7cbc771d1dd91475a156 (patch) | |
tree | dc2a297f7c4026394c9954ae4bfd4abd22ef9612 /src/gui/widgets/window.cpp | |
parent | bb0a6cb25b2985fd1f74c9d27d5a46f6863e2dee (diff) | |
download | plus-f98d003e354a1792117b7cbc771d1dd91475a156.tar.gz plus-f98d003e354a1792117b7cbc771d1dd91475a156.tar.bz2 plus-f98d003e354a1792117b7cbc771d1dd91475a156.tar.xz plus-f98d003e354a1792117b7cbc771d1dd91475a156.zip |
Fix most old style cast except manaserv and libxml2 defines.
Diffstat (limited to 'src/gui/widgets/window.cpp')
-rw-r--r-- | src/gui/widgets/window.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gui/widgets/window.cpp b/src/gui/widgets/window.cpp index 9b05a1389..1037296b6 100644 --- a/src/gui/widgets/window.cpp +++ b/src/gui/widgets/window.cpp @@ -748,7 +748,8 @@ int Window::getResizeHandles(gcn::MouseEvent &event) const int y = event.getY(); if (mGrip && (y > static_cast<int>(mTitleBarHeight) - || (y < (int)getPadding() && mTitleBarHeight > getPadding()))) + || (y < static_cast<int>(getPadding()) && mTitleBarHeight + > getPadding()))) { const int x = event.getX(); @@ -776,7 +777,7 @@ bool Window::isResizeAllowed(gcn::MouseEvent &event) const int y = event.getY(); if (mGrip && (y > static_cast<int>(mTitleBarHeight) - || y < (int)getPadding())) + || y < static_cast<int>(getPadding()))) { const int x = event.getX(); |