diff options
author | Kurt Zenker <kz@openoffice.org> | 2005-07-12 11:27:16 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2005-07-12 11:27:16 +0000 |
commit | e0d944d816dff2942af6491c54344fe79d53cfcf (patch) | |
tree | fc668b2d24df38ee95ac965dfc28b1887527ae01 | |
parent | e062904438dd07076209750ad3f81f170d270712 (diff) |
INTEGRATION: CWS mav18 (1.6.16); FILE MERGED
2005/06/08 13:52:12 mav 1.6.16.2: #121099# let the ReplacementImages storage be commited on storing of the document
2005/06/07 14:29:23 mav 1.6.16.1: #i50429#,#i48568# creation of a copy of an object
-rw-r--r-- | comphelper/inc/comphelper/embeddedobjectcontainer.hxx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/comphelper/inc/comphelper/embeddedobjectcontainer.hxx b/comphelper/inc/comphelper/embeddedobjectcontainer.hxx index bcb75f0b1ae4..ab0502eb4233 100644 --- a/comphelper/inc/comphelper/embeddedobjectcontainer.hxx +++ b/comphelper/inc/comphelper/embeddedobjectcontainer.hxx @@ -2,9 +2,9 @@ * * $RCSfile: embeddedobjectcontainer.hxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: vg $ $Date: 2005-03-23 14:27:24 $ + * last change: $Author: kz $ $Date: 2005-07-12 12:27:16 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -105,6 +105,7 @@ public: ~EmbeddedObjectContainer(); void SwitchPersistence( const com::sun::star::uno::Reference < com::sun::star::embed::XStorage >& ); + sal_Bool CommitImageSubStorage(); void ReleaseImageSubStorage(); ::rtl::OUString CreateUniqueObjectName(); @@ -150,6 +151,9 @@ public: // copy an embedded object into the storage sal_Bool CopyEmbeddedObject( EmbeddedObjectContainer& rSrc, const ::com::sun::star::uno::Reference < ::com::sun::star::embed::XEmbeddedObject >&, ::rtl::OUString& ); + // copy an embedded object into the storage, open the new copy and return it + ::com::sun::star::uno::Reference < ::com::sun::star::embed::XEmbeddedObject > CopyAndGetEmbeddedObject( EmbeddedObjectContainer& rSrc, const ::com::sun::star::uno::Reference < ::com::sun::star::embed::XEmbeddedObject >& xObj, /* TODO const ::rtl::OUString& aOrigName,*/ ::rtl::OUString& rName ); + // move an embedded object from one container to another one sal_Bool MoveEmbeddedObject( EmbeddedObjectContainer& rSrc, const ::com::sun::star::uno::Reference < ::com::sun::star::embed::XEmbeddedObject >&, ::rtl::OUString& ); |