Title: [164167] trunk/Source/WebKit2
Revision
164167
Author
[email protected]
Date
2014-02-15 00:36:58 -0800 (Sat, 15 Feb 2014)

Log Message

[GTK] Fix marshaller used in WebKitWebPage::document-loaded signal
https://bugs.webkit.org/show_bug.cgi?id=128808

Reviewed by Sergio Villar Senin.

* WebProcess/InjectedBundle/API/gtk/WebKitWebPage.cpp:
(webkit_web_page_class_init): Use g_cclosure_marshal_VOID__VOID
instead of g_cclosure_marshal_VOID__OBJECT.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (164166 => 164167)


--- trunk/Source/WebKit2/ChangeLog	2014-02-15 08:34:07 UTC (rev 164166)
+++ trunk/Source/WebKit2/ChangeLog	2014-02-15 08:36:58 UTC (rev 164167)
@@ -1,3 +1,14 @@
+2014-02-14  Carlos Garcia Campos  <[email protected]>
+
+        [GTK] Fix marshaller used in WebKitWebPage::document-loaded signal
+        https://bugs.webkit.org/show_bug.cgi?id=128808
+
+        Reviewed by Sergio Villar Senin.
+
+        * WebProcess/InjectedBundle/API/gtk/WebKitWebPage.cpp:
+        (webkit_web_page_class_init): Use g_cclosure_marshal_VOID__VOID
+        instead of g_cclosure_marshal_VOID__OBJECT.
+
 2014-02-14  Anders Carlsson  <[email protected]>
 
         Add SPI for monitoring web process crashes

Modified: trunk/Source/WebKit2/WebProcess/InjectedBundle/API/gtk/WebKitWebPage.cpp (164166 => 164167)


--- trunk/Source/WebKit2/WebProcess/InjectedBundle/API/gtk/WebKitWebPage.cpp	2014-02-15 08:34:07 UTC (rev 164166)
+++ trunk/Source/WebKit2/WebProcess/InjectedBundle/API/gtk/WebKitWebPage.cpp	2014-02-15 08:36:58 UTC (rev 164167)
@@ -270,7 +270,7 @@
         G_TYPE_FROM_CLASS(klass),
         G_SIGNAL_RUN_LAST,
         0, 0, 0,
-        g_cclosure_marshal_VOID__OBJECT,
+        g_cclosure_marshal_VOID__VOID,
         G_TYPE_NONE, 0);
 
     /**
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to