[Libreoffice-commits] core.git: Branch 'libreoffice-4-2' - i18npool/source

Michael Stahl mstahl at redhat.com
Mon Aug 11 23:48:01 PDT 2014


 i18npool/source/localedata/localedata.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 48cbe9d301e3c7f94ca8cc682b5c67a4fe6f378c
Author: Michael Stahl <mstahl at redhat.com>
Date:   Mon Aug 11 22:24:54 2014 +0200

    fdo#81995: fix Outline numbering tab page
    
    The "ParentNumbering" property is not a string.
    
    (regression from 97eb8a6e0eb830f37dcba64a51d725aab4c5ff53)
    
    Change-Id: Ib33e95847b388bb1126a63812e128c96a0c00730
    (cherry picked from commit 4d3c9ed257e51af55f358d2b44d5fc2e341c7202)
    Reviewed-on: https://gerrit.libreoffice.org/10875
    Reviewed-by: Eike Rathke <erack at redhat.com>
    Tested-by: Eike Rathke <erack at redhat.com>

diff --git a/i18npool/source/localedata/localedata.cxx b/i18npool/source/localedata/localedata.cxx
index 5d70251..9aafd2b 100644
--- a/i18npool/source/localedata/localedata.cxx
+++ b/i18npool/source/localedata/localedata.cxx
@@ -1589,7 +1589,7 @@ Any OutlineNumbering::getByIndex( sal_Int32 nIndex )
     pValues[4].Name = "BulletFontName";
     pValues[4].Value <<= OUString::createFromAscii(pTemp->sBulletFontName);
     pValues[5].Name = "ParentNumbering";
-    pValues[5].Value <<= OUString::number(pTemp->nParentNumbering);
+    pValues[5].Value <<= pTemp->nParentNumbering;
     pValues[6].Name = "LeftMargin";
     pValues[6].Value <<= pTemp->nLeftMargin;
     pValues[7].Name = "SymbolTextDistance";


More information about the Libreoffice-commits mailing list