diff options
author | Oliver Bolte <obo@openoffice.org> | 2008-01-04 15:36:50 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2008-01-04 15:36:50 +0000 |
commit | 3b5a451864558cc75ee9584bc65a17824e39ba4a (patch) | |
tree | 3235f4558fa32238531945dfcba8510ea9acf03e /comphelper | |
parent | 0e291dbb32a8f15026d3e8a09620cda3e132cffb (diff) |
INTEGRATION: CWS fwk77 (1.6.116); FILE MERGED
2007/11/24 10:33:13 pb 1.6.116.2: fix: #i81435# syntax fixed
2007/10/18 12:48:29 mav 1.6.116.1: #i81435# introduce SeekableOutputStream implementation; use new registration
Diffstat (limited to 'comphelper')
-rw-r--r-- | comphelper/source/container/IndexedPropertyValuesContainer.cxx | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/comphelper/source/container/IndexedPropertyValuesContainer.cxx b/comphelper/source/container/IndexedPropertyValuesContainer.cxx index 14466a5a7423..2c2de7099315 100644 --- a/comphelper/source/container/IndexedPropertyValuesContainer.cxx +++ b/comphelper/source/container/IndexedPropertyValuesContainer.cxx @@ -4,9 +4,9 @@ * * $RCSfile: IndexedPropertyValuesContainer.cxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: obo $ $Date: 2006-09-17 17:06:07 $ + * last change: $Author: obo $ $Date: 2008-01-04 16:36:50 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -51,6 +51,10 @@ #ifndef _COM_SUN_STAR_LANG_XSERVICEINFO_HPP_ #include <com/sun/star/lang/XServiceInfo.hpp> #endif +#ifndef _COM_SUN_STAR_UNO_XCOMPONENTCONTEXT_HPP_ +#include <com/sun/star/uno/XComponentContext.hpp> +#endif + #ifndef __SGI_STL_VECTOR #include <vector> @@ -63,7 +67,7 @@ typedef std::vector < uno::Sequence< beans::PropertyValue > > IndexedPropertyVal uno::Sequence< rtl::OUString > SAL_CALL IndexedPropertyValuesContainer_getSupportedServiceNames() throw(); rtl::OUString SAL_CALL IndexedPropertyValuesContainer_getImplementationName() throw(); uno::Reference< uno::XInterface > SAL_CALL IndexedPropertyValuesContainer_createInstance( - const uno::Reference< lang::XMultiServiceFactory > & rSMgr ) throw( uno::Exception ); + const uno::Reference< uno::XComponentContext > & rxContext ) throw( uno::Exception ); class IndexedPropertyValuesContainer : public cppu::WeakImplHelper2< container::XIndexContainer, lang::XServiceInfo > { @@ -272,7 +276,7 @@ rtl::OUString SAL_CALL IndexedPropertyValuesContainer_getImplementationName() th } uno::Reference< uno::XInterface > SAL_CALL IndexedPropertyValuesContainer_createInstance( - const uno::Reference< lang::XMultiServiceFactory > & ) throw( uno::Exception ) + const uno::Reference< uno::XComponentContext >&) throw( uno::Exception ) { return (cppu::OWeakObject*)new IndexedPropertyValuesContainer(); } |