Title: [97793] trunk/Source/WebCore
Revision
97793
Author
[email protected]
Date
2011-10-18 15:07:23 -0700 (Tue, 18 Oct 2011)

Log Message

Fix broken binding tests by changing G_MAXUSHORT to G_MAXUINT in WebKitDOMTestObj.cpp.
https://bugs.webkit.org/show_bug.cgi?id=70267

Reviewed by Daniel Bates.

Tests: fixing WebKitDOMTestObj.cpp

* bindings/scripts/test/GObject/WebKitDOMTestObj.cpp:
(webkit_dom_test_obj_class_init): Change G_MAXUSHORT to G_MAXUINT

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (97792 => 97793)


--- trunk/Source/WebCore/ChangeLog	2011-10-18 22:04:53 UTC (rev 97792)
+++ trunk/Source/WebCore/ChangeLog	2011-10-18 22:07:23 UTC (rev 97793)
@@ -1,3 +1,15 @@
+2011-10-18  Anna Cavender  <[email protected]>
+
+        Fix broken binding tests by changing G_MAXUSHORT to G_MAXUINT in WebKitDOMTestObj.cpp.
+        https://bugs.webkit.org/show_bug.cgi?id=70267
+
+        Reviewed by Daniel Bates.
+
+        Tests: fixing WebKitDOMTestObj.cpp
+
+        * bindings/scripts/test/GObject/WebKitDOMTestObj.cpp:
+        (webkit_dom_test_obj_class_init): Change G_MAXUSHORT to G_MAXUINT
+
 2011-10-18  Julien Chaffraix  <[email protected]>
 
         Crash in RenderDeprecatedFlexibleBox::layoutHorizontalBox

Modified: trunk/Source/WebCore/bindings/scripts/test/GObject/WebKitDOMTestObj.cpp (97792 => 97793)


--- trunk/Source/WebCore/bindings/scripts/test/GObject/WebKitDOMTestObj.cpp	2011-10-18 22:04:53 UTC (rev 97792)
+++ trunk/Source/WebCore/bindings/scripts/test/GObject/WebKitDOMTestObj.cpp	2011-10-18 22:07:23 UTC (rev 97793)
@@ -1580,7 +1580,7 @@
                                                            "test_obj_unsigned-short-attr", /* short description */
                                                            "read-write  gushort TestObj.unsigned-short-attr", /* longer - could do with some extra doc stuff here */
                                                            0, /* min */
-G_MAXUSHORT, /* max */
+G_MAXUINT, /* max */
 0, /* default */
                                                            WEBKIT_PARAM_READWRITE));
     g_object_class_install_property(gobjectClass,
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to