Title: [89299] trunk/Source/WebCore
- Revision
- 89299
- Author
- [email protected]
- Date
- 2011-06-20 15:36:44 -0700 (Mon, 20 Jun 2011)
Log Message
2011-06-20 Ryosuke Niwa <[email protected]>
Fix bit flag collision.
* editing/FrameSelection.h:
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (89298 => 89299)
--- trunk/Source/WebCore/ChangeLog 2011-06-20 22:25:13 UTC (rev 89298)
+++ trunk/Source/WebCore/ChangeLog 2011-06-20 22:36:44 UTC (rev 89299)
@@ -1,3 +1,9 @@
+2011-06-20 Ryosuke Niwa <[email protected]>
+
+ Fix bit flag collision.
+
+ * editing/FrameSelection.h:
+
2011-06-20 Jer Noble <[email protected]>
Unreviewed build fix; Fix Leopard WebCore build.
Modified: trunk/Source/WebCore/editing/FrameSelection.h (89298 => 89299)
--- trunk/Source/WebCore/editing/FrameSelection.h 2011-06-20 22:25:13 UTC (rev 89298)
+++ trunk/Source/WebCore/editing/FrameSelection.h 2011-06-20 22:36:44 UTC (rev 89299)
@@ -111,8 +111,8 @@
enum CursorAlignOnScroll { AlignCursorOnScrollIfNeeded,
AlignCursorOnScrollAlways };
enum SetSelectionOption {
- CloseTyping = 1 << 0,
- // 1 << 1 is reserved for EUserTriggered
+ // 1 << 0 is reserved for EUserTriggered
+ CloseTyping = 1 << 1,
ClearTypingStyle = 1 << 2,
SpellCorrectionTriggered = 1 << 3,
};
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes