diff options
-rw-r--r-- | sw/source/core/unocore/unotbl.cxx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sw/source/core/unocore/unotbl.cxx b/sw/source/core/unocore/unotbl.cxx index 113d6b6fd61c..c83083b53890 100644 --- a/sw/source/core/unocore/unotbl.cxx +++ b/sw/source/core/unocore/unotbl.cxx @@ -3540,7 +3540,7 @@ void SwXCellRange::GetDataSequence( } else if (pTextData) pTextData[nDtaCnt++] = lcl_getString(*pXCell); - else if (pDblData) + else { double fVal = fNan; if (!bForceNumberResults || table::CellContentType_TEXT != pXCell->getType()) @@ -3591,9 +3591,6 @@ void SwXCellRange::GetDataSequence( } pDblData[nDtaCnt++] = fVal; } - else { - OSL_FAIL( "output sequence missing" ); - } } } } |