[Libreoffice-commits] core.git: Branch 'libreoffice-4-3-1' - i18npool/source
Michael Stahl
mstahl at redhat.com
Tue Aug 12 06:27:27 PDT 2014
i18npool/source/localedata/localedata.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit ecc5c10f26f39ccb91592f09514dd000ca244368
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/10874
Reviewed-by: Eike Rathke <erack at redhat.com>
Tested-by: Eike Rathke <erack at redhat.com>
(cherry picked from commit 03d44c7670413b730b1445eeab5210cff8245786)
Reviewed-on: https://gerrit.libreoffice.org/10880
Reviewed-by: David Tardon <dtardon at redhat.com>
Reviewed-by: Caolán McNamara <caolanm at redhat.com>
Tested-by: Caolán McNamara <caolanm at redhat.com>
diff --git a/i18npool/source/localedata/localedata.cxx b/i18npool/source/localedata/localedata.cxx
index bcd087f..212b626 100644
--- a/i18npool/source/localedata/localedata.cxx
+++ b/i18npool/source/localedata/localedata.cxx
@@ -1585,7 +1585,7 @@ Any OutlineNumbering::getByIndex( sal_Int32 nIndex )
pValues[4].Name = "BulletFontName";
pValues[4].Value <<= 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