Author: alg
Date: Thu May 30 13:09:07 2013
New Revision: 1487847

URL: http://svn.apache.org/r1487847
Log:
i122410 extended Udo/Redo for text to broadcast

Modified:
    openoffice/trunk/main/svx/source/svdraw/svdundo.cxx

Modified: openoffice/trunk/main/svx/source/svdraw/svdundo.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/svx/source/svdraw/svdundo.cxx?rev=1487847&r1=1487846&r2=1487847&view=diff
==============================================================================
--- openoffice/trunk/main/svx/source/svdraw/svdundo.cxx (original)
+++ openoffice/trunk/main/svx/source/svdraw/svdundo.cxx Thu May 30 13:09:07 2013
@@ -1168,6 +1168,11 @@ void SdrUndoObjSetText::Undo()
 
        pObj->SetEmptyPresObj( bEmptyPresObj );
        pObj->ActionChanged();
+
+    // #122410# SetOutlinerParaObject at SdrText does not trigger a
+    // BroadcastObjectChange, but it is needed to make evtl. SlideSorters
+    // update their preview.
+       pObj->BroadcastObjectChange();
 }
 
 void SdrUndoObjSetText::Redo()
@@ -1184,6 +1189,11 @@ void SdrUndoObjSetText::Redo()
 
        pObj->ActionChanged();
 
+    // #122410# NbcSetOutlinerParaObjectForText at SdrTextObj does not trigger 
a
+    // BroadcastObjectChange, but it is needed to make evtl. SlideSorters
+    // update their preview.
+       pObj->BroadcastObjectChange();
+
        // #94278# Trigger PageChangeCall
        ImpShowPageOfThisObject();
 }


Reply via email to