summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan van den Akker <stephanv778@gmail.com>2012-06-07 09:21:17 +0200
committerThorsten Behrens <tbehrens@suse.com>2012-06-07 09:28:37 +0200
commit5601c5d395a5eece95a8d8a5600de91aa20485c6 (patch)
tree9932ea28e2715005d076a1e96fb536a9685cbc5d
parent48d6c11c6fc6276c45bed56318fc4ac0dc033fdf (diff)
Fix for fdo#49859 Impress bullet indent data entry
This fixes fdo#49859 - numbering alignment or indentation is not applied in Impress, by making the tabpage deactivate force-read the values.
-rw-r--r--cui/source/tabpages/numpages.cxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/cui/source/tabpages/numpages.cxx b/cui/source/tabpages/numpages.cxx
index fc05d7293238..63e4ae4b81d2 100644
--- a/cui/source/tabpages/numpages.cxx
+++ b/cui/source/tabpages/numpages.cxx
@@ -3007,7 +3007,12 @@ void SvxNumPositionTabPage::ActivatePage(const SfxItemSet& rSet)
int SvxNumPositionTabPage::DeactivatePage(SfxItemSet *_pSet)
{
if(_pSet)
+ {
+ if(aDistBorderMF.IsEnabled())
+ DistanceHdl_Impl(&aDistBorderMF);
+ DistanceHdl_Impl(&aIndentMF);
FillItemSet(*_pSet);
+ }
return sal_True;
}