]> git.saurik.com Git - wxWidgets.git/commitdiff
Fixed an off-by-one error in the rectangle converter
authorRobin Dunn <robin@alldunn.com>
Sat, 5 Jan 2002 22:49:02 +0000 (22:49 +0000)
committerRobin Dunn <robin@alldunn.com>
Sat, 5 Jan 2002 22:49:02 +0000 (22:49 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13393 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

contrib/src/stc/PlatWX.cpp
src/stc/PlatWX.cpp

index 65d7de1b454a19f4c145dbac61ce36810108fe5f..e008465c852a44bfaa58bbb5c8f6581f35c80023 100644 (file)
@@ -25,7 +25,8 @@ wxRect wxRectFromPRectangle(PRectangle prc) {
 }
 
 PRectangle PRectangleFromwxRect(wxRect rc) {
-    return PRectangle(rc.GetLeft(), rc.GetTop(), rc.GetRight(), rc.GetBottom());
+    return PRectangle(rc.GetLeft(), rc.GetTop(),
+                      rc.GetRight()+1, rc.GetBottom()+1);
 }
 
 Colour::Colour(long lcol) {
index 65d7de1b454a19f4c145dbac61ce36810108fe5f..e008465c852a44bfaa58bbb5c8f6581f35c80023 100644 (file)
@@ -25,7 +25,8 @@ wxRect wxRectFromPRectangle(PRectangle prc) {
 }
 
 PRectangle PRectangleFromwxRect(wxRect rc) {
-    return PRectangle(rc.GetLeft(), rc.GetTop(), rc.GetRight(), rc.GetBottom());
+    return PRectangle(rc.GetLeft(), rc.GetTop(),
+                      rc.GetRight()+1, rc.GetBottom()+1);
 }
 
 Colour::Colour(long lcol) {