From 83c6772dc84d7fc06dfa87aff0a839c5cb9dd49f Mon Sep 17 00:00:00 2001 From: Stefano Ceccherini Date: Wed, 3 Jan 2007 07:43:14 +0000 Subject: [PATCH] extended a comment and added a new one git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@19688 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kits/interface/View.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/kits/interface/View.cpp b/src/kits/interface/View.cpp index 8ae9d23cac..cc5decb0cf 100644 --- a/src/kits/interface/View.cpp +++ b/src/kits/interface/View.cpp @@ -1443,9 +1443,11 @@ BView::GetMouse(BPoint *location, uint32 *buttons, bool checkMessageQueue) && code == B_OK) { fOwner->fLink->Read(location); fOwner->fLink->Read(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; }