summaryrefslogtreecommitdiff
path: root/src/corelib/x11
diff options
context:
space:
mode:
authorGraeme Geldenhuys <graemeg@gmail.com>2010-10-28 00:31:38 +0200
committerGraeme Geldenhuys <graemeg@gmail.com>2010-10-28 00:31:38 +0200
commite878ef0a55705720a41e77081d8f8765b11109dc (patch)
treec0eb53514ad1fd4df58b30a18914c90895ad3cb5 /src/corelib/x11
parentf259be48749fd0cec281a23e2ef2e34b186f3aa2 (diff)
downloadfpGUI-e878ef0a55705720a41e77081d8f8765b11109dc.tar.xz
OnDragLeave event now has the Sender parameter set, and points to the target component
Diffstat (limited to 'src/corelib/x11')
-rw-r--r--src/corelib/x11/fpg_x11.pas4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/corelib/x11/fpg_x11.pas b/src/corelib/x11/fpg_x11.pas
index b97243f0..e2766d0a 100644
--- a/src/corelib/x11/fpg_x11.pas
+++ b/src/corelib/x11/fpg_x11.pas
@@ -1009,7 +1009,7 @@ begin
if wg.AcceptDrops then
begin
if Assigned(wg.OnDragLeave) then
- wg.OnDragLeave(nil);
+ wg.OnDragLeave(wg);
end;
end;
ResetDNDVariables;
@@ -1098,7 +1098,7 @@ begin
if wg2.AcceptDrops then
begin
if Assigned(wg2.OnDragLeave) then
- wg2.OnDragLeave(nil);
+ wg2.OnDragLeave(wg2);
end;
fillchar(msgp, sizeof(msgp), 0);
{ Notify the widget so it can reset its looks if needed }