Changeset 99492 in webkit
- Timestamp:
- Nov 7, 2011, 3:43:21 PM (14 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r99491 r99492 1 2011-11-07 Alice Boxhall <aboxhall@chromium.org> 2 3 Remove unnecessary use of function pointer in FrameSelection::modify() 4 https://bugs.webkit.org/show_bug.cgi?id=71646 5 6 Reviewed by Ryosuke Niwa. 7 8 * editing/FrameSelection.cpp: 9 (WebCore::FrameSelection::modify): 10 1 11 2011-11-07 Andreas Kling <kling@webkit.org> 2 12 -
trunk/Source/WebCore/editing/FrameSelection.cpp
r99255 r99492 1025 1025 VisiblePosition next; 1026 1026 for (VisiblePosition p = pos; ; p = next) { 1027 next = (direction == DirectionUp ? previousLinePosition : nextLinePosition)(p, xPos); 1027 if (direction == DirectionUp) 1028 next = previousLinePosition(p, xPos); 1029 else 1030 next = nextLinePosition(p, xPos); 1031 1028 1032 if (next.isNull() || next == p) 1029 1033 break;
Note:
See TracChangeset
for help on using the changeset viewer.