summaryrefslogtreecommitdiff
path: root/goodies
diff options
context:
space:
mode:
authorKai Ahrens <ka@openoffice.org>2000-10-17 11:35:23 +0000
committerKai Ahrens <ka@openoffice.org>2000-10-17 11:35:23 +0000
commit3a7225b07d321de290a96a606b4cf04eaf9f2849 (patch)
tree7fa679b1d0b5ae0a199db3334073c65ba6e63b3d /goodies
parente3b80f81fdfa0bb6967e4f104c3ffeffde5f25db (diff)
#78689#: reassign graphic data after swapin
Diffstat (limited to 'goodies')
-rw-r--r--goodies/source/graphic/grfmgr.cxx10
1 files 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;
}