summaryrefslogtreecommitdiff
path: root/i18npool
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2014-08-11 22:24:54 +0200
committerMichael Stahl <mstahl@redhat.com>2014-08-11 22:33:31 +0200
commit4d3c9ed257e51af55f358d2b44d5fc2e341c7202 (patch)
treee258db7d49d4b1a435faf32cdf58a9e6e6d8ce29 /i18npool
parente05da0d5d5399714f52e9f6df404870a381832c8 (diff)
fdo#81995: fix Outline numbering tab page
The "ParentNumbering" property is not a string. (regression from 97eb8a6e0eb830f37dcba64a51d725aab4c5ff53) Change-Id: Ib33e95847b388bb1126a63812e128c96a0c00730
Diffstat (limited to 'i18npool')
-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 5554d3eb0f0c..944cc5f536ca 100644
--- a/i18npool/source/localedata/localedata.cxx
+++ b/i18npool/source/localedata/localedata.cxx
@@ -1586,7 +1586,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";