Title: [157570] trunk/Source/WebKit/gtk
Revision
157570
Author
[email protected]
Date
2013-10-17 05:58:44 -0700 (Thu, 17 Oct 2013)

Log Message

Massage the Gtk build.

* WebCoreSupport/EditorClientGtk.cpp:
(WebKit::EditorClient::shouldApplyStyle):

Modified Paths

Diff

Modified: trunk/Source/WebKit/gtk/ChangeLog (157569 => 157570)


--- trunk/Source/WebKit/gtk/ChangeLog	2013-10-17 12:38:45 UTC (rev 157569)
+++ trunk/Source/WebKit/gtk/ChangeLog	2013-10-17 12:58:44 UTC (rev 157570)
@@ -1,3 +1,10 @@
+2013-10-17  Andreas Kling  <[email protected]>
+
+        Massage the Gtk build.
+
+        * WebCoreSupport/EditorClientGtk.cpp:
+        (WebKit::EditorClient::shouldApplyStyle):
+
 2013-10-16  Jochen Eisinger  <[email protected]>
 
         A page should exit fullscreen mode if it opens a new popup

Modified: trunk/Source/WebKit/gtk/WebCoreSupport/EditorClientGtk.cpp (157569 => 157570)


--- trunk/Source/WebKit/gtk/WebCoreSupport/EditorClientGtk.cpp	2013-10-17 12:38:45 UTC (rev 157569)
+++ trunk/Source/WebKit/gtk/WebCoreSupport/EditorClientGtk.cpp	2013-10-17 12:58:44 UTC (rev 157570)
@@ -180,7 +180,7 @@
 bool EditorClient::shouldApplyStyle(WebCore::StylePropertySet* set, WebCore::Range* range)
 {
     gboolean accept = TRUE;
-    Ref<MutableStylePropertySet> mutableStyle(style->mutableCopy());
+    Ref<MutableStylePropertySet> mutableStyle(set->mutableCopy());
     GRefPtr<WebKitDOMCSSStyleDeclaration> kitDeclaration(kit(mutableStyle->ensureCSSStyleDeclaration()));
     GRefPtr<WebKitDOMRange> kitRange(adoptGRef(kit(range)));
     g_signal_emit_by_name(m_webView, "should-apply-style", kitDeclaration.get(), kitRange.get(), &accept);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to