diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-01-07 17:55:49 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-01-07 20:18:21 +0100 |
commit | f8708acc5b72a0e453a42c19c396ccd4f7786da7 (patch) | |
tree | 8746d26071291d48c555387d57b7c425ee2cd211 | |
parent | ff580eb39b46646309feba447f6bf485124db6b1 (diff) |
another missing null pointer check in multilinebar, fdo#44518
-rw-r--r-- | sc/source/ui/app/inputhdl.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/app/inputhdl.cxx b/sc/source/ui/app/inputhdl.cxx index 83b58ff8004f..34959e15a127 100644 --- a/sc/source/ui/app/inputhdl.cxx +++ b/sc/source/ui/app/inputhdl.cxx @@ -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); |