summaryrefslogtreecommitdiff
path: root/comphelper
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-02-12 10:47:43 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-02-12 12:03:28 +0100
commitf45183d26f45d1e19a474e24e6c9c530808ca35d (patch)
treea10ac3ae367a969da33cb9be59f4a5f5f426cd15 /comphelper
parent9616b786adb9491f7c26fc0f1053e7b3d1b35f27 (diff)
Unwind comphelper::OPropertyContainer_Base typedef
Change-Id: Ied87e18f8297fb8e85fdbcab38d719664e3ed066
Diffstat (limited to 'comphelper')
-rw-r--r--comphelper/source/property/propertycontainer.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/comphelper/source/property/propertycontainer.cxx b/comphelper/source/property/propertycontainer.cxx
index a322ff1b1cee..98e9439a687b 100644
--- a/comphelper/source/property/propertycontainer.cxx
+++ b/comphelper/source/property/propertycontainer.cxx
@@ -42,7 +42,7 @@ using namespace ::com::sun::star::beans;
//==========================================================================
//--------------------------------------------------------------------------
OPropertyContainer::OPropertyContainer(::cppu::OBroadcastHelper& _rBHelper)
- :OPropertyContainer_Base(_rBHelper)
+ :OPropertySetHelper(_rBHelper)
{
}
@@ -66,7 +66,7 @@ Sequence< Type > SAL_CALL OPropertyContainer::getTypes() throw (RuntimeException
//--------------------------------------------------------------------------
void SAL_CALL OPropertyContainer::setFastPropertyValue( sal_Int32 nHandle, const Any& rValue ) throw ( UnknownPropertyException, PropertyVetoException, IllegalArgumentException, WrappedTargetException, RuntimeException)
{
- OPropertyContainer_Base::setFastPropertyValue( nHandle, rValue );
+ OPropertySetHelper::setFastPropertyValue( nHandle, rValue );
}
//--------------------------------------------------------------------------