Title: [102531] trunk/Source/WebCore
- Revision
- 102531
- Author
- [email protected]
- Date
- 2011-12-10 15:46:33 -0800 (Sat, 10 Dec 2011)
Log Message
Lion build fix attempt after r102527.
* editing/SpellingCorrectionCommand.cpp:
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (102530 => 102531)
--- trunk/Source/WebCore/ChangeLog 2011-12-10 23:30:34 UTC (rev 102530)
+++ trunk/Source/WebCore/ChangeLog 2011-12-10 23:46:33 UTC (rev 102531)
@@ -1,3 +1,9 @@
+2011-12-10 Ryosuke Niwa <[email protected]>
+
+ Lion build fix attempt after r102527.
+
+ * editing/SpellingCorrectionCommand.cpp:
+
2011-12-10 Kevin Ollivier <[email protected]>
[wx] Unreviewed build fixes. Add missing header for CPP
Modified: trunk/Source/WebCore/editing/SpellingCorrectionCommand.cpp (102530 => 102531)
--- trunk/Source/WebCore/editing/SpellingCorrectionCommand.cpp 2011-12-10 23:30:34 UTC (rev 102530)
+++ trunk/Source/WebCore/editing/SpellingCorrectionCommand.cpp 2011-12-10 23:46:33 UTC (rev 102531)
@@ -55,11 +55,11 @@
{
}
- virtual void doApply()
+ virtual void doApply() OVERRIDE
{
}
- virtual void doUnapply()
+ virtual void doUnapply() OVERRIDE
{
if (!m_hasBeenUndone) {
document()->frame()->editor()->unappliedSpellCorrection(startingSelection(), m_corrected, m_correction);
@@ -68,6 +68,10 @@
}
+ virtual void getNodesInCommand(HashSet<Node*>&) OVERRIDE
+ {
+ }
+
String m_corrected;
String m_correction;
bool m_hasBeenUndone;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes