summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/page/efl/DragControllerEfl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/page/efl/DragControllerEfl.cpp')
-rw-r--r--Source/WebCore/page/efl/DragControllerEfl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/WebCore/page/efl/DragControllerEfl.cpp b/Source/WebCore/page/efl/DragControllerEfl.cpp
index 0c5f002..f5c0ecc 100644
--- a/Source/WebCore/page/efl/DragControllerEfl.cpp
+++ b/Source/WebCore/page/efl/DragControllerEfl.cpp
@@ -43,14 +43,14 @@ const int DragController::DragIconBottomInset = 3;
const float DragController::DragImageAlpha = 0.75f;
-bool DragController::isCopyKeyDown()
+bool DragController::isCopyKeyDown(DragData*)
{
return false;
}
DragOperation DragController::dragOperation(DragData* dragData)
{
- if (dragData->containsURL())
+ if (dragData->containsURL(0))
return DragOperationCopy;
return DragOperationNone;