Oops, took out too much...

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25796 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn 2004-02-14 02:29:01 +00:00
parent d13ea3aa4f
commit 04ebdf400c
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ wxRect wxRectFromPRectangle(PRectangle prc) {
PRectangle PRectangleFromwxRect(wxRect rc) {
return PRectangle(rc.GetLeft(), rc.GetTop(),
rc.GetRight(), rc.GetBottom());
rc.GetRight()+1, rc.GetBottom()+1);
}
wxColour wxColourFromCA(const ColourAllocated& ca) {

View File

@ -35,7 +35,7 @@ wxRect wxRectFromPRectangle(PRectangle prc) {
PRectangle PRectangleFromwxRect(wxRect rc) {
return PRectangle(rc.GetLeft(), rc.GetTop(),
rc.GetRight(), rc.GetBottom());
rc.GetRight()+1, rc.GetBottom()+1);
}
wxColour wxColourFromCA(const ColourAllocated& ca) {