diff options
author | Eike Rathke <erack@redhat.com> | 2016-03-07 19:34:39 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2016-03-07 20:33:41 +0100 |
commit | b3253b2bdc7d9545ef9f430d0b7bcca3cd685812 (patch) | |
tree | 6a58263fe79d19e5ba7482a6b2ac2be5de8c349a | |
parent | 25d8652796f7cae024dbfcbd5347280f9689797c (diff) |
remove unused errInterpOverflow
Change-Id: Iaac45af141220f5a7460b7313507d3927a2b2581
-rw-r--r-- | include/formula/errorcodes.hxx | 1 | ||||
-rw-r--r-- | sc/source/core/data/global.cxx | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/include/formula/errorcodes.hxx b/include/formula/errorcodes.hxx index a85c68264bce..6c20d8a443dd 100644 --- a/include/formula/errorcodes.hxx +++ b/include/formula/errorcodes.hxx @@ -51,7 +51,6 @@ const sal_uInt16 errNoConvergence = 523; const sal_uInt16 errNoRef = 524; // #REF! const sal_uInt16 errNoName = 525; // #NAME? const sal_uInt16 errDoubleRef = 526; -const sal_uInt16 errInterpOverflow = 527; // Not displayed, temporary for TrackFormulas, // Cell depends on another cell that has errCircularReference const sal_uInt16 errTrackFromCircRef = 528; diff --git a/sc/source/core/data/global.cxx b/sc/source/core/data/global.cxx index 56919b6c6988..e886829a014d 100644 --- a/sc/source/core/data/global.cxx +++ b/sc/source/core/data/global.cxx @@ -426,7 +426,6 @@ OUString ScGlobal::GetLongErrorString(sal_uInt16 nErrNumber) nErrNumber = STR_LONG_ERR_STR_OVF; break; case errStackOverflow: - case errInterpOverflow: nErrNumber = STR_LONG_ERR_STACK_OVF; break; case errIllegalJump: |