bug #101 (wxListCtrl::GetItemRect() returns rectangle with incorrect height) fixed

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@8157 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2000-08-22 10:12:26 +00:00
parent 1464778143
commit 64acfbb2be

View File

@@ -777,7 +777,7 @@ bool wxListCtrl::GetItemRect(long item, wxRect& rect, int code) const
rect.x = rect2.left;
rect.y = rect2.top;
rect.width = rect2.right - rect2.left;
rect.height = rect2.bottom - rect2.left;
rect.height = rect2.bottom - rect2.top;
return success;
}