Log Message
[GObject IDL Parser] STRING argument should be HASHREF https://bugs.webkit.org/show_bug.cgi?id=78877
Patch by C Anthony Risinger <[email protected]> on 2012-03-12 Reviewed by Kentaro Hara. * bindings/scripts/CodeGeneratorGObject.pm: (GenerateFunctions): extendedAttributes are hashes, not strings
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (110503 => 110504)
--- trunk/Source/WebCore/ChangeLog 2012-03-12 23:43:01 UTC (rev 110503)
+++ trunk/Source/WebCore/ChangeLog 2012-03-12 23:46:17 UTC (rev 110504)
@@ -1,3 +1,13 @@
+2012-03-12 C Anthony Risinger <[email protected]>
+
+ [GObject IDL Parser] STRING argument should be HASHREF
+ https://bugs.webkit.org/show_bug.cgi?id=78877
+
+ Reviewed by Kentaro Hara.
+
+ * bindings/scripts/CodeGeneratorGObject.pm:
+ (GenerateFunctions): extendedAttributes are hashes, not strings
+
2012-03-12 Jessie Berlin <[email protected]>
More Windows build fixing.
Modified: trunk/Source/WebCore/bindings/scripts/CodeGeneratorGObject.pm (110503 => 110504)
--- trunk/Source/WebCore/bindings/scripts/CodeGeneratorGObject.pm 2012-03-12 23:43:01 UTC (rev 110503)
+++ trunk/Source/WebCore/bindings/scripts/CodeGeneratorGObject.pm 2012-03-12 23:46:17 UTC (rev 110504)
@@ -1093,7 +1093,7 @@
$param->name("value");
$param->type($attribute->signature->type);
my %attributes = ();
- $param->extendedAttributes("attributes");
+ $param->extendedAttributes(\%attributes);
my $arrayRef = $function->parameters;
push(@$arrayRef, $param);
_______________________________________________ webkit-changes mailing list [email protected] http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes
