You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by al...@apache.org on 2013/05/30 15:09:08 UTC

svn commit: r1487847 - /openoffice/trunk/main/svx/source/svdraw/svdundo.cxx

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();
 }