| Index: Source/core/editing/DeleteSelectionCommand.cpp
|
| diff --git a/Source/core/editing/DeleteSelectionCommand.cpp b/Source/core/editing/DeleteSelectionCommand.cpp
|
| index f2d41d780c8315d1161360f4ec10405ef0926fc2..5046bb1dcb909197451f8c83f1a7974231954d7a 100644
|
| --- a/Source/core/editing/DeleteSelectionCommand.cpp
|
| +++ b/Source/core/editing/DeleteSelectionCommand.cpp
|
| @@ -374,7 +374,7 @@ void DeleteSelectionCommand::removeNode(PassRefPtrWillBeRawPtr<Node> node, Shoul
|
|
|
| // Make sure empty cell has some height, if a placeholder can be inserted.
|
| document().updateLayoutIgnorePendingStylesheets();
|
| - RenderObject *r = node->renderer();
|
| + LayoutObject* r = node->renderer();
|
| if (r && r->isTableCell() && toLayoutTableCell(r)->contentHeight() <= 0) {
|
| Position firstEditablePosition = firstEditablePositionInNode(node.get());
|
| if (firstEditablePosition.isNotNull())
|
|
|