From 3a7225b07d321de290a96a606b4cf04eaf9f2849 Mon Sep 17 00:00:00 2001 From: Kai Ahrens Date: Tue, 17 Oct 2000 11:35:23 +0000 Subject: [PATCH] #78689#: reassign graphic data after swapin --- goodies/source/graphic/grfmgr.cxx | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) 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; }