Title: [163236] trunk/Source/WebKit/gtk
Revision
163236
Author
[email protected]
Date
2014-01-31 22:40:21 -0800 (Fri, 31 Jan 2014)

Log Message

Unreviewed. Fixing the GTK build after r163232.

* WebCoreSupport/EditorClientGtk.cpp:
(WebKit::collapseSelection): Add an additional FrameSelection::selection() call.

Modified Paths

Diff

Modified: trunk/Source/WebKit/gtk/ChangeLog (163235 => 163236)


--- trunk/Source/WebKit/gtk/ChangeLog	2014-02-01 05:16:45 UTC (rev 163235)
+++ trunk/Source/WebKit/gtk/ChangeLog	2014-02-01 06:40:21 UTC (rev 163236)
@@ -1,3 +1,10 @@
+2014-01-31  Zan Dobersek  <[email protected]>
+
+        Unreviewed. Fixing the GTK build after r163232.
+
+        * WebCoreSupport/EditorClientGtk.cpp:
+        (WebKit::collapseSelection): Add an additional FrameSelection::selection() call.
+
 2014-01-31  Ryosuke Niwa  <[email protected]>
 
         Remove inline member functions of FrameSelection that access m_selection

Modified: trunk/Source/WebKit/gtk/WebCoreSupport/EditorClientGtk.cpp (163235 => 163236)


--- trunk/Source/WebKit/gtk/WebCoreSupport/EditorClientGtk.cpp	2014-02-01 05:16:45 UTC (rev 163235)
+++ trunk/Source/WebKit/gtk/WebCoreSupport/EditorClientGtk.cpp	2014-02-01 06:40:21 UTC (rev 163236)
@@ -216,7 +216,7 @@
     Frame& frame = corePage->focusController().focusedOrMainFrame();
 
     // Collapse the selection without clearing it
-    const VisibleSelection& selection = frame.selection();
+    const VisibleSelection& selection = frame.selection().selection();
     frame.selection().setBase(selection.extent(), selection.affinity());
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to