diff options
author | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-02-11 13:28:47 -0500 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-02-11 15:12:21 -0500 |
commit | 2ec3127da35933fc6d5ac47ecedd0267f67c1d62 (patch) | |
tree | 49f3b061b3f3964bb9b3e797c9ff011e1e2c6cfd /sc/source/ui/docshell/docsh3.cxx | |
parent | b51acfb4c0c7dec0cdc3de5890ebb1c051bab509 (diff) |
Ensure that vector array has a numeric array of NaN's for empty range.
With this change, we ensure that mpNumArray is never NULL even when the
range consists entirely of empty cells. For an empty range, mpNumArray
will be non-NULL and filled with NaN's while mpStrArray will be NULL.
Change-Id: If5cead26ebe917af150cf7e39e17afe3f310beb7
Diffstat (limited to 'sc/source/ui/docshell/docsh3.cxx')
-rw-r--r-- | sc/source/ui/docshell/docsh3.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/docshell/docsh3.cxx b/sc/source/ui/docshell/docsh3.cxx index 0a18ba8f97bb..125ac0f523dd 100644 --- a/sc/source/ui/docshell/docsh3.cxx +++ b/sc/source/ui/docshell/docsh3.cxx @@ -87,7 +87,7 @@ void ScDocShell::PostDataChanged() { Broadcast( SfxSimpleHint( FID_DATACHANGED ) ); SFX_APP()->Broadcast(SfxSimpleHint( FID_ANYDATACHANGED )); // Navigator - aDocument.CellContentModified(); + aDocument.ClearFormulaContext(); //! Navigator direkt benachrichtigen! } |