diff options
author | Eike Rathke <erack@redhat.com> | 2012-06-26 12:44:01 +0200 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2012-06-26 13:00:05 +0200 |
commit | e559fb28bbe65d98a7dcb4160db152d606332faa (patch) | |
tree | ce683f2bf7eb562cd7c50159c6019fcc6cc46948 /sc | |
parent | 11066aca8ff0b0d4b84169f8d79b465579dbe616 (diff) |
resolved fdo#47222 in N() pop string constant before pushing result
Change-Id: Ifd3313e45b838b3d9ab4dc8d0b4887f4836bb013
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/core/tool/interpr1.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sc/source/core/tool/interpr1.cxx b/sc/source/core/tool/interpr1.cxx index fd44da1336ec..42f645761156 100644 --- a/sc/source/core/tool/interpr1.cxx +++ b/sc/source/core/tool/interpr1.cxx @@ -2970,6 +2970,7 @@ void ScInterpreter::ScN() return; } case svString: + PopError(); PushDouble(0); return; default: |