Title: [97499] trunk/Source/WebCore
Revision
97499
Author
[email protected]
Date
2011-10-14 13:16:59 -0700 (Fri, 14 Oct 2011)

Log Message

Mac build fix after r97497.

* editing/markup.cpp:
(WebCore::isNonTableCellHTMLBlockElement):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (97498 => 97499)


--- trunk/Source/WebCore/ChangeLog	2011-10-14 20:02:29 UTC (rev 97498)
+++ trunk/Source/WebCore/ChangeLog	2011-10-14 20:16:59 UTC (rev 97499)
@@ -1,3 +1,10 @@
+2011-10-14  Ryosuke Niwa  <[email protected]>
+
+        Mac build fix after r97497.
+
+        * editing/markup.cpp:
+        (WebCore::isNonTableCellHTMLBlockElement):
+
 2011-10-14  Daniel Cheng  <[email protected]>
 
         Context-aware HTML paste for Chromium

Modified: trunk/Source/WebCore/editing/markup.cpp (97498 => 97499)


--- trunk/Source/WebCore/editing/markup.cpp	2011-10-14 20:02:29 UTC (rev 97498)
+++ trunk/Source/WebCore/editing/markup.cpp	2011-10-14 20:16:59 UTC (rev 97499)
@@ -428,7 +428,7 @@
     return lastClosed;
 }
 
-bool isNonTableCellHTMLBlockElement(const Node* node)
+static bool isNonTableCellHTMLBlockElement(const Node* node)
 {
     return node->hasTagName(listingTag)
         || node->hasTagName(olTag)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to