| Index: Source/core/editing/TypingCommand.cpp
|
| diff --git a/Source/core/editing/TypingCommand.cpp b/Source/core/editing/TypingCommand.cpp
|
| index 709bb88f8757841a0b4bf1c4ad2236c66d74cee8..64aee96be72388d2f3d912cff4d0f526f7d10340 100644
|
| --- a/Source/core/editing/TypingCommand.cpp
|
| +++ b/Source/core/editing/TypingCommand.cpp
|
| @@ -233,7 +233,7 @@ PassRefPtr<TypingCommand> TypingCommand::lastTypingCommandIfStillOpenForTyping(F
|
|
|
| RefPtr<CompositeEditCommand> lastEditCommand = frame->editor().lastEditCommand();
|
| if (!lastEditCommand || !lastEditCommand->isTypingCommand() || !static_cast<TypingCommand*>(lastEditCommand.get())->isOpenForMoreTyping())
|
| - return 0;
|
| + return nullptr;
|
|
|
| return static_cast<TypingCommand*>(lastEditCommand.get());
|
| }
|
|
|