summaryrefslogtreecommitdiff
path: root/configmgr/source/api2/provider.cxx
diff options
context:
space:
mode:
authorDirk Grobler <dg@openoffice.org>2001-02-08 11:03:27 +0000
committerDirk Grobler <dg@openoffice.org>2001-02-08 11:03:27 +0000
commit5ea662797e3e5fe0c808a06ccafa759d4936b8bd (patch)
tree53464d483f31bcc264f7b622cd550cfa13b5d0a1 /configmgr/source/api2/provider.cxx
parent496bfabce0db353963fcc3813db1556466142fda (diff)
#83239# preloading of configtrees
Diffstat (limited to 'configmgr/source/api2/provider.cxx')
-rw-r--r--configmgr/source/api2/provider.cxx14
1 files changed, 11 insertions, 3 deletions
diff --git a/configmgr/source/api2/provider.cxx b/configmgr/source/api2/provider.cxx
index b69d264e4c6e..5a685441f017 100644
--- a/configmgr/source/api2/provider.cxx
+++ b/configmgr/source/api2/provider.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: provider.cxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: fs $ $Date: 2000-12-08 17:15:44 $
+ * last change: $Author: dg $ $Date: 2001-02-08 12:03:27 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -103,17 +103,25 @@ namespace configmgr
//-----------------------------------------------------------------------------
OProvider::OProvider(Module& aModule, ServiceInfo const* pInfo)
:ServiceComponentImpl(pInfo)
+ ,OPropertyContainer(ServiceComponentImpl::rBHelper)
,m_aModule(aModule)
{
}
- // XTypeOProvider
+ // XTypeProvider
//-----------------------------------------------------------------------------
uno::Sequence< uno::Type > SAL_CALL OProvider::getTypes( ) throw(uno::RuntimeException)
{
return ::comphelper::concatSequences(ServiceComponentImpl::getTypes(), OProvider_Base::getTypes());
}
+ // XPropertySet
+ //-----------------------------------------------------------------------------
+ uno::Reference< ::com::sun::star::beans::XPropertySetInfo > SAL_CALL OProvider::getPropertySetInfo( ) throw(::com::sun::star::uno::RuntimeException)
+ {
+ return ::cppu::OPropertySetHelper::createPropertySetInfo(getInfoHelper());
+ }
+
// XInterface
//-----------------------------------------------------------------------------
uno::Any SAL_CALL OProvider::queryInterface(uno::Type const& rType) throw(uno::RuntimeException)