diff --git a/goodies/source/graphic/grfmgr.cxx b/goodies/source/graphic/grfmgr.cxx index a43877fb8649..de6d7aabf586 100644 --- a/goodies/source/graphic/grfmgr.cxx +++ b/goodies/source/graphic/grfmgr.cxx @@ -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; }