Kaydet (Commit) b1219178 authored tarafından Markus Mohrhard's avatar Markus Mohrhard

missing pointer check in new multiline input code, fdo#43856

üst ee154f70
......@@ -3413,7 +3413,7 @@ void ScInputHandler::NotifyChange( const ScInputHdlState* pState,
if (pData)
{
pEngine->SetText( *pData );
if ( pInputWin->IsMultiLineInput() )
if ( pInputWin && pInputWin->IsMultiLineInput() )
aString = ScEditUtil::GetMultilineString(*pEngine);
else
aString = GetEditText(pEngine);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment