diff options
Diffstat (limited to 'embeddedobj/source/msole/xolefactory.cxx')
-rw-r--r-- | embeddedobj/source/msole/xolefactory.cxx | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/embeddedobj/source/msole/xolefactory.cxx b/embeddedobj/source/msole/xolefactory.cxx index 8910c07ee4a0..7c0bd689d0f2 100644 --- a/embeddedobj/source/msole/xolefactory.cxx +++ b/embeddedobj/source/msole/xolefactory.cxx @@ -2,9 +2,9 @@ * * $RCSfile: xolefactory.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: mav $ $Date: 2003-12-08 12:49:50 $ + * last change: $Author: mav $ $Date: 2003-12-08 15:18:36 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -112,7 +112,8 @@ uno::Reference< uno::XInterface > SAL_CALL OleEmbeddedObjectFactory::impl_static uno::Reference< uno::XInterface > SAL_CALL OleEmbeddedObjectFactory::createInstanceInitFromEntry( const uno::Reference< embed::XStorage >& xStorage, const ::rtl::OUString& sEntName, - sal_Bool bIsReadonly ) + sal_Bool bIsReadonly, + const uno::Sequence< beans::PropertyValue >& lObjArgs ) throw ( lang::IllegalArgumentException, container::NoSuchElementException, io::IOException, @@ -156,7 +157,7 @@ uno::Reference< uno::XInterface > SAL_CALL OleEmbeddedObjectFactory::createInsta sEntName, embed::EntryInitModes::ENTRY_DEFAULT_INIT, uno::Sequence< beans::PropertyValue >(), - uno::Sequence< beans::PropertyValue >() ); + lObjArgs ); return xResult; } |