[Libreoffice-commits] core.git: sw/source

Christopher Copits ChrisCDev at live.com
Mon Mar 11 02:20:39 PDT 2013


 sw/source/ui/docvw/HeaderFooterWin.cxx |   12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

New commits:
commit 38a022ce8b2698ef4535d3487326307928c5208b
Author: Christopher Copits <ChrisCDev at live.com>
Date:   Sun Mar 10 18:11:24 2013 -0400

    fdo#57362 Cannot save document after editing footer background and border
    
    In HeaderFooterWin.cxx's SwHeaderFooterWin::ExecuteCommand(): after changes are made to the header's background, box, or shadow, I call SetModified(true) to signal that the document was modified.
    
    Change-Id: I2be5710dde9d7a6f5d4373484d52ece71c91cdd4
    Reviewed-on: https://gerrit.libreoffice.org/2654
    Reviewed-by: Fridrich Strba <fridrich at documentfoundation.org>
    Tested-by: Fridrich Strba <fridrich at documentfoundation.org>

diff --git a/sw/source/ui/docvw/HeaderFooterWin.cxx b/sw/source/ui/docvw/HeaderFooterWin.cxx
index 25e2913..7b0f5bf 100644
--- a/sw/source/ui/docvw/HeaderFooterWin.cxx
+++ b/sw/source/ui/docvw/HeaderFooterWin.cxx
@@ -465,14 +465,20 @@ void SwHeaderFooterWin::ExecuteCommand( sal_uInt16 nSlot )
                 if ( svx::ShowBorderBackgroundDlg( this, &aSet, true ) )
                 {
                     const SfxPoolItem* pItem;
-                    if ( SFX_ITEM_SET == aSet.GetItemState( RES_BACKGROUND, sal_False, &pItem ) )
+                    if ( SFX_ITEM_SET == aSet.GetItemState( RES_BACKGROUND, sal_False, &pItem ) ) {
                         pHFFmt->SetFmtAttr( *pItem );
+                        rView.GetDocShell()->SetModified(true);
+                    }
 
-                    if ( SFX_ITEM_SET == aSet.GetItemState( RES_BOX, sal_False, &pItem ) )
+                    if ( SFX_ITEM_SET == aSet.GetItemState( RES_BOX, sal_False, &pItem ) ) {
                         pHFFmt->SetFmtAttr( *pItem );
+                        rView.GetDocShell()->SetModified(true);
+                    }
 
-                    if ( SFX_ITEM_SET == aSet.GetItemState( RES_SHADOW, sal_False, &pItem ) )
+                    if ( SFX_ITEM_SET == aSet.GetItemState( RES_SHADOW, sal_False, &pItem ) ) {
                         pHFFmt->SetFmtAttr( *pItem );
+                        rView.GetDocShell()->SetModified(true);
+                    }
                 }
             }
             break;


More information about the Libreoffice-commits mailing list