#78689#: reassign graphic data after swapin

This commit is contained in:
Kai Ahrens 2000-10-17 11:35:23 +00:00
parent e3b80f81fd
commit 3a7225b07d

View file

@ -2,9 +2,9 @@
*
* $RCSfile: grfmgr.cxx,v $
*
* $Revision: 1.3 $
* $Revision: 1.4 $
*
* last change: $Author: ka $ $Date: 2000-10-11 15:17:49 $
* last change: $Author: ka $ $Date: 2000-10-17 12:35:23 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@ -891,6 +891,9 @@ BOOL GraphicObject::SwapIn()
mpMgr->ImplGraphicObjectWasSwappedIn( *this );
}
if( bRet )
ImplAssignGraphicData();
return bRet;
}
@ -915,6 +918,9 @@ BOOL GraphicObject::SwapIn( SvStream* pIStm )
mpMgr->ImplGraphicObjectWasSwappedIn( *this );
}
if( bRet )
ImplAssignGraphicData();
return bRet;
}