projects
/
wxWidgets.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9d0be83
)
Fixed update rectangle passed to WinInvalidateRect in wxWindowOS2::Refresh().
author
Stefan Neis
<Stefan.Neis@t-online.de>
Sun, 26 Oct 2003 16:11:20 +0000
(16:11 +0000)
committer
Stefan Neis
<Stefan.Neis@t-online.de>
Sun, 26 Oct 2003 16:11:20 +0000
(16:11 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24317
c3d73ce0
-8a6f-49c7-b76d-
6d57e0e08775
src/os2/window.cpp
patch
|
blob
|
blame
|
history
diff --git
a/src/os2/window.cpp
b/src/os2/window.cpp
index 605a5ade87bda35fbe7449b1078557666dc1501e..842335a91d5d4500929de98a65cf8cfb09eb39f2 100644
(file)
--- a/
src/os2/window.cpp
+++ b/
src/os2/window.cpp
@@
-1235,9
+1235,9
@@
void wxWindowOS2::Refresh(
RECTL vOs2Rect;
vOs2Rect.xLeft = pRect->x;
- vOs2Rect.y
Top
= pRect->y;
+ vOs2Rect.y
Bottom
= pRect->y;
vOs2Rect.xRight = pRect->x + pRect->width;
- vOs2Rect.y
Bottom
= pRect->y + pRect->height;
+ vOs2Rect.y
Top
= pRect->y + pRect->height;
::WinInvalidateRect(hWnd, &vOs2Rect, bEraseBack);
}