win32: pass better messages to NotifyApplicationUserInput for WM_NCMOUSE...

git-svn-id: trunk@23589 -
This commit is contained in:
paul 2010-01-29 09:11:25 +00:00
parent d9170c2e4a
commit db416e28ac

View File

@ -2050,6 +2050,9 @@ begin
end;
WM_NCLBUTTONDOWN:
begin
LMessage.Msg := Msg;
LMessage.WParam := WParam;
LMessage.LParam := LParam;
NotifyUserInput := True;
Assert(False, 'Trace:WindowProc - Got WM_NCLBUTTONDOWN');
@ -2070,6 +2073,9 @@ begin
end;
WM_NCMOUSEMOVE, WM_NCMOUSELEAVE:
begin
LMessage.Msg := Msg;
LMessage.WParam := WParam;
LMessage.LParam := LParam;
NotifyUserInput := True;
Application.DoBeforeMouseMessage(nil);
end;