Kaydet (Commit) 603c23cd authored tarafından Rüdiger Timm's avatar Rüdiger Timm

INTEGRATION: CWS impresstables2 (1.4.234); FILE MERGED

2007/08/01 18:47:20 cl 1.4.234.2: RESYNC: (1.4-1.5); FILE MERGED
2007/03/15 16:55:58 cl 1.4.234.1: #i68103# moved SetNotifyHdl( Link() ) call to outliner cache
üst 122e5a13
...@@ -4,9 +4,9 @@ ...@@ -4,9 +4,9 @@
* *
* $RCSfile: svdoutlinercache.cxx,v $ * $RCSfile: svdoutlinercache.cxx,v $
* *
* $Revision: 1.5 $ * $Revision: 1.6 $
* *
* last change: $Author: hr $ $Date: 2007-06-27 19:10:29 $ * last change: $Author: rt $ $Date: 2008-03-12 09:56:15 $
* *
* The Contents of this file are made available subject to * The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1. * the terms of GNU Lesser General Public License Version 2.1.
...@@ -100,12 +100,18 @@ void SdrOutlinerCache::disposeOutliner( SdrOutliner* pOutliner ) ...@@ -100,12 +100,18 @@ void SdrOutlinerCache::disposeOutliner( SdrOutliner* pOutliner )
mpModeOutline = pOutliner; mpModeOutline = pOutliner;
pOutliner->Clear(); pOutliner->Clear();
pOutliner->SetVertical( false ); pOutliner->SetVertical( false );
// #101088# Deregister on outliner, might be reused from outliner cache
pOutliner->SetNotifyHdl( Link() );
} }
else if( (OUTLINERMODE_TEXTOBJECT == nOutlMode) && (NULL == mpModeText) ) else if( (OUTLINERMODE_TEXTOBJECT == nOutlMode) && (NULL == mpModeText) )
{ {
mpModeText = pOutliner; mpModeText = pOutliner;
pOutliner->Clear(); pOutliner->Clear();
pOutliner->SetVertical( false ); pOutliner->SetVertical( false );
// #101088# Deregister on outliner, might be reused from outliner cache
pOutliner->SetNotifyHdl( Link() );
} }
else else
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment