Title: [149745] trunk/Tools
Revision
149745
Author
[email protected]
Date
2013-05-08 09:46:41 -0700 (Wed, 08 May 2013)

Log Message

BUILD FIX (r149579): Use Vector::appendVector() instead of Vector::append()

* DumpRenderTree/ios/AccessibilityUIElementIOS.mm:
(concatenateAttributeAndValue): Switch to appendVector().

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (149744 => 149745)


--- trunk/Tools/ChangeLog	2013-05-08 16:41:14 UTC (rev 149744)
+++ trunk/Tools/ChangeLog	2013-05-08 16:46:41 UTC (rev 149745)
@@ -1,3 +1,10 @@
+2013-05-08  David Kilzer  <[email protected]>
+
+        BUILD FIX (r149579): Use Vector::appendVector() instead of Vector::append()
+
+        * DumpRenderTree/ios/AccessibilityUIElementIOS.mm:
+        (concatenateAttributeAndValue): Switch to appendVector().
+
 2013-05-08  Andras Becsi  <[email protected]>
 
         [Qt][WTR] Fix the build on Mac after r149692

Modified: trunk/Tools/DumpRenderTree/ios/AccessibilityUIElementIOS.mm (149744 => 149745)


--- trunk/Tools/DumpRenderTree/ios/AccessibilityUIElementIOS.mm	2013-05-08 16:41:14 UTC (rev 149744)
+++ trunk/Tools/DumpRenderTree/ios/AccessibilityUIElementIOS.mm	2013-05-08 16:46:41 UTC (rev 149745)
@@ -92,7 +92,7 @@
     
     Vector<UniChar> valueBuffer([value length]);
     [value getCharacters:valueBuffer.data()];
-    buffer.append(valueBuffer);
+    buffer.appendVector(valueBuffer);
     
     return JSStringCreateWithCharacters(buffer.data(), buffer.size());
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to