Title: [86845] trunk/Source/WebCore
Revision
86845
Author
[email protected]
Date
2011-05-19 09:22:11 -0700 (Thu, 19 May 2011)

Log Message

Try to fix SUPPORT_AUTOCORRECTION_PANEL build.

* editing/SpellingCorrectionController.cpp:
(WebCore::markersHaveIdenticalDescription): Call description() function.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (86844 => 86845)


--- trunk/Source/WebCore/ChangeLog	2011-05-19 15:12:05 UTC (rev 86844)
+++ trunk/Source/WebCore/ChangeLog	2011-05-19 16:22:11 UTC (rev 86845)
@@ -1,3 +1,10 @@
+2011-05-19  Darin Adler  <[email protected]>
+
+        Try to fix SUPPORT_AUTOCORRECTION_PANEL build.
+
+        * editing/SpellingCorrectionController.cpp:
+        (WebCore::markersHaveIdenticalDescription): Call description() function.
+
 2011-05-19  Andrey Adaikin  <[email protected]>
 
         Reviewed by Pavel Feldman.

Modified: trunk/Source/WebCore/editing/SpellingCorrectionController.cpp (86844 => 86845)


--- trunk/Source/WebCore/editing/SpellingCorrectionController.cpp	2011-05-19 15:12:05 UTC (rev 86844)
+++ trunk/Source/WebCore/editing/SpellingCorrectionController.cpp	2011-05-19 16:22:11 UTC (rev 86845)
@@ -77,9 +77,9 @@
     if (markers.isEmpty())
         return true;
 
-    const String& description = markers[0].description;
+    const String& description = markers[0].description();
     for (size_t i = 1; i < markers.size(); ++i) {
-        if (description != markers[i].description)
+        if (description != markers[i].description())
             return false;
     }
     return true;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to