Title: [111027] trunk/Source/WebKit/gtk
Revision
111027
Author
[email protected]
Date
2012-03-16 11:00:10 -0700 (Fri, 16 Mar 2012)

Log Message

[GTK] WebKitWebResource::load-failed uses the wrong marshaller
https://bugs.webkit.org/show_bug.cgi?id=81229

Patch by Victor Lucero <[email protected]> on 2012-03-16
Reviewed by Philippe Normand.

* webkit/webkitwebresource.cpp:
(webkit_web_resource_class_init): load-failed signal in WebkitWebResource was using the wrong marshaller

Modified Paths

Diff

Modified: trunk/Source/WebKit/gtk/ChangeLog (111026 => 111027)


--- trunk/Source/WebKit/gtk/ChangeLog	2012-03-16 17:58:13 UTC (rev 111026)
+++ trunk/Source/WebKit/gtk/ChangeLog	2012-03-16 18:00:10 UTC (rev 111027)
@@ -1,3 +1,13 @@
+2012-03-16  Victor Lucero  <[email protected]>
+
+        [GTK] WebKitWebResource::load-failed uses the wrong marshaller
+        https://bugs.webkit.org/show_bug.cgi?id=81229
+
+        Reviewed by Philippe Normand.
+
+        * webkit/webkitwebresource.cpp:
+        (webkit_web_resource_class_init): load-failed signal in WebkitWebResource was using the wrong marshaller
+
 2012-03-14  Landry Breuil  <[email protected]>
 
         WebKit/gtk/resources/error.html font-size error

Modified: trunk/Source/WebKit/gtk/webkit/webkitwebresource.cpp (111026 => 111027)


--- trunk/Source/WebKit/gtk/webkit/webkitwebresource.cpp	2012-03-16 17:58:13 UTC (rev 111026)
+++ trunk/Source/WebKit/gtk/webkit/webkitwebresource.cpp	2012-03-16 18:00:10 UTC (rev 111027)
@@ -154,7 +154,7 @@
             G_SIGNAL_RUN_LAST,
             0,
             0, 0,
-            g_cclosure_marshal_VOID__OBJECT,
+            g_cclosure_marshal_VOID__POINTER,
             G_TYPE_NONE, 1,
             G_TYPE_POINTER);
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to