Title: [98822] trunk/Source/WebCore
Revision
98822
Author
[email protected]
Date
2011-10-29 17:45:50 -0700 (Sat, 29 Oct 2011)

Log Message

Build fix.

* editing/Editor.cpp:
(WebCore::Editor::markMisspellingsAfterTypingToWord):

Modified Paths

Property Changed

Diff

Modified: trunk/Source/WebCore/ChangeLog (98821 => 98822)


--- trunk/Source/WebCore/ChangeLog	2011-10-29 23:27:38 UTC (rev 98821)
+++ trunk/Source/WebCore/ChangeLog	2011-10-30 00:45:50 UTC (rev 98822)
@@ -1,3 +1,10 @@
+2011-10-29  Mark Rowe  <[email protected]>
+
+        Build fix.
+
+        * editing/Editor.cpp:
+        (WebCore::Editor::markMisspellingsAfterTypingToWord):
+
 2011-10-29  Daniel Cheng  <[email protected]>
 
         Rename DataTransferItems to DataTransferItemList
Property changes on: trunk/Source/WebCore/ChangeLog
___________________________________________________________________

Deleted: svn:executable

Modified: trunk/Source/WebCore/editing/Editor.cpp (98821 => 98822)


--- trunk/Source/WebCore/editing/Editor.cpp	2011-10-29 23:27:38 UTC (rev 98821)
+++ trunk/Source/WebCore/editing/Editor.cpp	2011-10-30 00:45:50 UTC (rev 98822)
@@ -1850,6 +1850,10 @@
 
 void Editor::markMisspellingsAfterTypingToWord(const VisiblePosition &wordStart, const VisibleSelection& selectionAfterTyping, bool doReplacement)
 {
+#if !USE(AUTOMATIC_TEXT_REPLACEMENT)
+    UNUSED_PARAM(doReplacement);
+#endif
+
     if (unifiedTextCheckerEnabled()) {
         m_spellingCorrector->applyPendingCorrection(selectionAfterTyping);
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to