diff options
Diffstat (limited to 'xmloff/source/text/XMLIndexTabStopEntryContext.cxx')
-rw-r--r-- | xmloff/source/text/XMLIndexTabStopEntryContext.cxx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/xmloff/source/text/XMLIndexTabStopEntryContext.cxx b/xmloff/source/text/XMLIndexTabStopEntryContext.cxx index 51764f72b047..1822fd251b0a 100644 --- a/xmloff/source/text/XMLIndexTabStopEntryContext.cxx +++ b/xmloff/source/text/XMLIndexTabStopEntryContext.cxx @@ -129,8 +129,7 @@ void XMLIndexTabStopEntryContext::FillPropertyValues( // right aligned? pValues[nNextEntry].Name = rTemplateContext.sTabStopRightAligned; - pValues[nNextEntry].Value.setValue( &bTabRightAligned, - cppu::UnoType<bool>::get()); + pValues[nNextEntry].Value <<= bTabRightAligned; nNextEntry++; // position @@ -151,8 +150,7 @@ void XMLIndexTabStopEntryContext::FillPropertyValues( // tab character #i21237# pValues[nNextEntry].Name = "WithTab"; - pValues[nNextEntry].Value.setValue( &bWithTab, - cppu::UnoType<bool>::get()); + pValues[nNextEntry].Value <<= bWithTab; nNextEntry++; // check whether we really filled all elements of the sequence |