[Libreoffice-commits] .: cui/source

Thorsten Behrens thorsten at kemper.freedesktop.org
Thu Jun 7 00:29:01 PDT 2012


 cui/source/tabpages/numpages.cxx |    5 +++++
 1 file changed, 5 insertions(+)

New commits:
commit 5601c5d395a5eece95a8d8a5600de91aa20485c6
Author: Stephan van den Akker <stephanv778 at gmail.com>
Date:   Thu Jun 7 09:21:17 2012 +0200

    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.

diff --git a/cui/source/tabpages/numpages.cxx b/cui/source/tabpages/numpages.cxx
index fc05d72..63e4ae4 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;
 }
 


More information about the Libreoffice-commits mailing list