summaryrefslogtreecommitdiff
path: root/ui/dragAndDrop.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ui/dragAndDrop.cpp')
-rw-r--r--ui/dragAndDrop.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/dragAndDrop.cpp b/ui/dragAndDrop.cpp
index c7aea906..2989e544 100644
--- a/ui/dragAndDrop.cpp
+++ b/ui/dragAndDrop.cpp
@@ -50,7 +50,7 @@ public:
//create a custom event on drop window: execute event after file dropping is completed! (e.g. after mouse is released)
FFSFileDropEvent evt(droppedFileName, dropWindow_);
- dropWindow_->GetEventHandler()->AddPendingEvent(evt);
+ dropWindow_->AddPendingEvent(evt);
}
return false;
}
bgstack15