[Libreoffice-commits] core.git: Branch 'libreoffice-6-2' - sc/source

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Thu Nov 29 06:40:29 UTC 2018


 sc/source/ui/unoobj/chart2uno.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 5908f1ea0a19482a999c2e00aeaae05eabc1e8e6
Author:     Markus Mohrhard <markus.mohrhard at googlemail.com>
AuthorDate: Thu Nov 29 00:04:58 2018 +0100
Commit:     Markus Mohrhard <markus.mohrhard at googlemail.com>
CommitDate: Thu Nov 29 07:40:06 2018 +0100

    tdf#105236, only take number format from numeric cells
    
    Change-Id: I55deaa1f0579582a45dc1e10bb578b680eb98647
    Reviewed-on: https://gerrit.libreoffice.org/64200
    Tested-by: Jenkins
    Reviewed-by: Markus Mohrhard <markus.mohrhard at googlemail.com>
    (cherry picked from commit fb04e7180cdf656dbbd3daa9c81615d9478229e0)
    Reviewed-on: https://gerrit.libreoffice.org/64203

diff --git a/sc/source/ui/unoobj/chart2uno.cxx b/sc/source/ui/unoobj/chart2uno.cxx
index 448652397cee..5fc78815f602 100644
--- a/sc/source/ui/unoobj/chart2uno.cxx
+++ b/sc/source/ui/unoobj/chart2uno.cxx
@@ -3145,7 +3145,7 @@ sal_uInt32 getDisplayNumberFormat(const ScDocument* pDoc, const ScAddress& rPos)
         for (const Item& rItem : m_aDataArray)
         {
             ScRefCellValue aCell(*m_pDocument, rItem.mAddress);
-            if (!aCell.isEmpty())
+            if (!aCell.isEmpty() && aCell.hasNumeric())
             {
                 return static_cast<sal_Int32>(getDisplayNumberFormat(m_pDocument, rItem.mAddress));
             }


More information about the Libreoffice-commits mailing list