Changeset 150293 in webkit


Ignore:
Timestamp:
May 17, 2013 1:17:55 PM (11 years ago)
Author:
ap@apple.com
Message:

Build fix.

  • loader/FrameLoader.cpp: (WebCore::FrameLoader::willTransitionToCommitted): Frame:editor() now returns a reference.
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r150292 r150293  
     12013-05-17  Alexey Proskuryakov  <ap@apple.com>
     2
     3        Build fix.
     4
     5        * loader/FrameLoader.cpp: (WebCore::FrameLoader::willTransitionToCommitted):
     6        Frame:editor() now returns a reference.
     7
    182013-05-17  Christophe Dumez  <ch.dumez@sisa.samsung.com>
    29
  • trunk/Source/WebCore/loader/FrameLoader.cpp

    r150291 r150293  
    479479    // This function is called when a frame is still fully in place (not cached, not detached), but will be replaced.
    480480
    481     if (m_frame->editor()->hasComposition()) {
     481    if (m_frame->editor().hasComposition()) {
    482482        // The text was already present in DOM, so it's better to confirm than to cancel the composition.
    483         m_frame->editor()->confirmComposition();
    484         if (EditorClient* editorClient = m_frame->editor()->client())
     483        m_frame->editor().confirmComposition();
     484        if (EditorClient* editorClient = m_frame->editor().client())
    485485            editorClient->respondToChangedSelection(m_frame);
    486486    }
Note: See TracChangeset for help on using the changeset viewer.