Title: [154588] trunk/Source/WebCore
- Revision
- 154588
- Author
- [email protected]
- Date
- 2013-08-26 00:45:16 -0700 (Mon, 26 Aug 2013)
Log Message
[GTK] Fix compile warning in WebKitDOMCustom
https://bugs.webkit.org/show_bug.cgi?id=120286
Reviewed by Philippe Normand.
* bindings/gobject/WebKitDOMCustom.cpp:
(webkit_dom_html_element_get_item_type): Add return 0.
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (154587 => 154588)
--- trunk/Source/WebCore/ChangeLog 2013-08-26 06:20:42 UTC (rev 154587)
+++ trunk/Source/WebCore/ChangeLog 2013-08-26 07:45:16 UTC (rev 154588)
@@ -1,3 +1,13 @@
+2013-08-26 Carlos Garcia Campos <[email protected]>
+
+ [GTK] Fix compile warning in WebKitDOMCustom
+ https://bugs.webkit.org/show_bug.cgi?id=120286
+
+ Reviewed by Philippe Normand.
+
+ * bindings/gobject/WebKitDOMCustom.cpp:
+ (webkit_dom_html_element_get_item_type): Add return 0.
+
2013-08-25 Ryosuke Niwa <[email protected]>
JSHTMLFormElement::canGetItemsForName needlessly allocates a Vector
Modified: trunk/Source/WebCore/bindings/gobject/WebKitDOMCustom.cpp (154587 => 154588)
--- trunk/Source/WebCore/bindings/gobject/WebKitDOMCustom.cpp 2013-08-26 06:20:42 UTC (rev 154587)
+++ trunk/Source/WebCore/bindings/gobject/WebKitDOMCustom.cpp 2013-08-26 07:45:16 UTC (rev 154588)
@@ -232,6 +232,7 @@
void* webkit_dom_html_element_get_item_type(WebKitDOMHTMLElement*)
{
g_warning("%s: this functionality has been removed from WebKit, this function does nothing.", __func__);
+ return 0;
}
// WebKitDOMHTMLPropertiesCollection
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes