Changeset 45065 in webkit


Ignore:
Timestamp:
Jun 24, 2009 12:20:49 AM (15 years ago)
Author:
eric@webkit.org
Message:

2009-06-24 Eric Seidel <eric@webkit.org>

No review, build fix only.

The previous checkin had an improper merge. This fixes the build.

  • page/DragController.cpp: (WebCore::DragController::tryDocumentDrag):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r45064 r45065  
     12009-06-24  Eric Seidel  <eric@webkit.org>
     2
     3        No review, build fix only.
     4
     5        The previous checkin had an improper merge.  This fixes the build.
     6
     7        * page/DragController.cpp:
     8        (WebCore::DragController::tryDocumentDrag):
     9
    1102009-06-05  Eric Seidel  <eric@webkit.org>
    211
  • trunk/WebCore/page/DragController.cpp

    r45064 r45065  
    262262        return false;
    263263   
    264     DragOperation operation = DragOperationNone;
     264    m_isHandlingDrag = false;
    265265    if (actionMask & DragDestinationActionDHTML) {
    266         operation = tryDHTMLDrag(dragData);
     266        m_isHandlingDrag = tryDHTMLDrag(dragData, operation);
    267267        // Do not continue if m_documentUnderMouse has been reset by tryDHTMLDrag.
    268268        // tryDHTMLDrag fires dragenter event. The event listener that listens
     
    273273            return false;
    274274    }
    275     m_isHandlingDrag = operation != DragOperationNone;
    276275
    277276    // It's unclear why this check is after tryDHTMLDrag.
Note: See TracChangeset for help on using the changeset viewer.