diff options
Diffstat (limited to 'editeng')
-rw-r--r-- | editeng/source/items/paraitem.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/editeng/source/items/paraitem.cxx b/editeng/source/items/paraitem.cxx index 07a927947bdd..a63f73c25335 100644 --- a/editeng/source/items/paraitem.cxx +++ b/editeng/source/items/paraitem.cxx @@ -802,6 +802,7 @@ SvxTabStop::SvxTabStop() eAdjustment = SvxTabAdjust::Left; m_cDecimal = cDfltDecimalChar; cFill = cDfltFillChar; + fillDecimal(); } @@ -812,9 +813,10 @@ SvxTabStop::SvxTabStop( const sal_Int32 nPos, const SvxTabAdjust eAdjst, eAdjustment = eAdjst; m_cDecimal = cDec; cFill = cFil; + fillDecimal(); } -void SvxTabStop::fillDecimal() const +void SvxTabStop::fillDecimal() { if ( cDfltDecimalChar == m_cDecimal ) m_cDecimal = SvtSysLocale().GetLocaleData().getNumDecimalSep()[0]; |