| b045a72b | 16-Nov-2025 |
Damjan Jovanovic <damjan@apache.org> |
Use the correct namespace when converting ODF formulas to MS Excel 2003 XML, so that R1C1 formula is used instead of leaving broken "of:=[.A1]" style references.
Patch by: me Fixes: https://bz.apach
Use the correct namespace when converting ODF formulas to MS Excel 2003 XML, so that R1C1 formula is used instead of leaving broken "of:=[.A1]" style references.
Patch by: me Fixes: https://bz.apache.org/ooo/show_bug.cgi?id=96018
show more ...
|
| da5c8a22 | 09-May-2025 |
Damjan Jovanovic <damjan@apache.org> |
Test for October properly. Month 10 will fail both of these tests else if (month > 6 && month < 10) { quarter = "Q3"; longQuarter = "3rd quarter"; } else if (month > 10 && month < 13)
Test for October properly. Month 10 will fail both of these tests else if (month > 6 && month < 10) { quarter = "Q3"; longQuarter = "3rd quarter"; } else if (month > 10 && month < 13) {quarter = "Q4"; longQuarter = "4th quarter"; } as 10 is neither greater nor lesser than 10. Rewrite the comparison to include 10 properly, and clean it up.
Patch by: me Fixes: https://bz.apache.org/ooo/show_bug.cgi?id=94658
show more ...
|
| 10a136b9 | 09-May-2025 |
Damjan Jovanovic <damjan@apache.org> |
Fix the test failures in XBreakIteratorTest._isBeginWord() and _isEndWord(). It was failing because the word type differed: it used WordType.ANY_WORD when calling XBreakIterator.isBeginWord() and XBr
Fix the test failures in XBreakIteratorTest._isBeginWord() and _isEndWord(). It was failing because the word type differed: it used WordType.ANY_WORD when calling XBreakIterator.isBeginWord() and XBreakIterator.isEndWord(), but used WordType.ANYWORD_IGNOREWHITESPACES instead when determining word boundaries to test in nextWord().
Patch by: me
show more ...
|