Index: Source/core/editing/InsertListCommand.cpp |
diff --git a/Source/core/editing/InsertListCommand.cpp b/Source/core/editing/InsertListCommand.cpp |
index 70d9213db3cc172e5d13464671c766179a219981..b98c92069a0e68f55de07b30cbb11b522336e60e 100644 |
--- a/Source/core/editing/InsertListCommand.cpp |
+++ b/Source/core/editing/InsertListCommand.cpp |
@@ -324,8 +324,8 @@ static Element* adjacentEnclosingList(const VisiblePosition& pos, const VisibleP |
if (!listNode) |
return 0; |
- Node* previousCell = enclosingTableCell(pos.deepEquivalent()); |
- Node* currentCell = enclosingTableCell(adjacentPos.deepEquivalent()); |
+ Element* previousCell = enclosingTableCell(pos.deepEquivalent()); |
+ Element* currentCell = enclosingTableCell(adjacentPos.deepEquivalent()); |
if (!listNode->hasTagName(listTag) |
|| listNode->contains(pos.deepEquivalent().deprecatedNode()) |