summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2014-08-11 22:24:54 +0200
committerAndras Timar <andras.timar@collabora.com>2014-08-21 21:24:36 +0200
commit101c7c2b546ba000df5bf9f1d746c7d5c9878e5c (patch)
tree228a50d82097b80297901ce68d0c24b0e58e7bac
parent230882cff2516118347e58f599dbbd32eb5f52e9 (diff)
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@redhat.com> Tested-by: Eike Rathke <erack@redhat.com>
-rw-r--r--i18npool/source/localedata/localedata.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/i18npool/source/localedata/localedata.cxx b/i18npool/source/localedata/localedata.cxx
index 5d702517b8ae..9aafd2b5b6f2 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";