diff options
author | RĂ¼diger Timm <rt@openoffice.org> | 2003-11-24 16:19:13 +0000 |
---|---|---|
committer | RĂ¼diger Timm <rt@openoffice.org> | 2003-11-24 16:19:13 +0000 |
commit | 5cbb4722ea32ff95498aaf9d9daa4a271a42831c (patch) | |
tree | b6018065ae204fe725920a6e76a3a6490f4371df /sd | |
parent | c046a5f1b30335d94493f0c05c2e4b15e5ede52d (diff) |
INTEGRATION: CWS aw003 (1.45.24); FILE MERGED
2003/07/24 14:07:15 aw 1.45.24.3: #110094#
Adaptions for DrawingLayer changes
2003/06/30 16:41:32 aw 1.45.24.2: RESYNC: (1.45-1.46); FILE MERGED
2003/06/06 13:05:46 aw 1.45.24.1: #109820#
2nd run of changes for ItemSet isolation
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/view/outlnvsh.cxx | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/sd/source/ui/view/outlnvsh.cxx b/sd/source/ui/view/outlnvsh.cxx index 394049b14..53cafe6ce 100644 --- a/sd/source/ui/view/outlnvsh.cxx +++ b/sd/source/ui/view/outlnvsh.cxx @@ -2,9 +2,9 @@ * * $RCSfile: outlnvsh.cxx,v $ * - * $Revision: 1.46 $ + * $Revision: 1.47 $ * - * last change: $Author: vg $ $Date: 2003-06-04 11:05:05 $ + * last change: $Author: rt $ $Date: 2003-11-24 17:19:13 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -2305,7 +2305,8 @@ BOOL SdOutlineViewShell::UpdateTitleObject( SdPage* pPage, Paragraph* pPara ) pTO->SetEmptyPresObj( FALSE ); // Nur Objekt painten - pTO->SendRepaintBroadcast(); + pTO->ActionChanged(); + // pTO->SendRepaintBroadcast(); } return( bNewObject ); @@ -2376,7 +2377,7 @@ BOOL SdOutlineViewShell::UpdateLayoutObject( SdPage* pPage, Paragraph* pPara ) SfxItemSet aTempAttr( pDoc->GetPool() ); aTempAttr.Put( XLineStyleItem( XLINE_NONE ) ); aTempAttr.Put( XFillStyleItem( XFILL_NONE ) ); - pTO->SetItemSetAndBroadcast(aTempAttr); + pTO->SetMergedItemSetAndBroadcast(aTempAttr); // Liste der Gliederungsvorlagen fuer Anmeldung als Listener String aName = pPage->GetLayoutName(); @@ -2407,7 +2408,8 @@ BOOL SdOutlineViewShell::UpdateLayoutObject( SdPage* pPage, Paragraph* pPara ) pTO->SetEmptyPresObj( FALSE ); // Nur Objekt painten - pTO->SendRepaintBroadcast(); + pTO->ActionChanged(); + // pTO->SendRepaintBroadcast(); } return( bNewObject ); } |