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

another missing null pointer check in multilinebar, fdo#44518

üst ff580eb3
......@@ -2115,7 +2115,7 @@ void ScInputHandler::DataChanged( sal_Bool bFromTopNotify )
if (eMode==SC_INPUT_TYPE || eMode==SC_INPUT_TABLE)
{
String aText;
if ( pInputWin->IsMultiLineInput() )
if ( pInputWin && pInputWin->IsMultiLineInput() )
aText = ScEditUtil::GetMultilineString(*pEngine);
else
aText = 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