extended a comment and added a new one

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@19688 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stefano Ceccherini 2007-01-03 07:43:14 +00:00
parent ae9aed772e
commit 83c6772dc8
1 changed files with 3 additions and 1 deletions

View File

@ -1443,9 +1443,11 @@ BView::GetMouse(BPoint *location, uint32 *buttons, bool checkMessageQueue)
&& code == B_OK) {
fOwner->fLink->Read<BPoint>(location);
fOwner->fLink->Read<uint32>(buttons);
// TODO: ServerWindow replies with an int32 here
// TODO: See above comment about coordinates
ConvertFromScreen(location);
// TODO: in beos R5, location is already converted to the view local coordinate system,
// so if an app checks the window message queue by itself, it might not find what it expects.
} else
*buttons = 0;
}