summaryrefslogtreecommitdiff
path: root/svx/source/table/propertyset.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/table/propertyset.cxx')
-rw-r--r--svx/source/table/propertyset.cxx17
1 files changed, 0 insertions, 17 deletions
diff --git a/svx/source/table/propertyset.cxx b/svx/source/table/propertyset.cxx
index 81bbc8b2bdb7..36b2ec78e407 100644
--- a/svx/source/table/propertyset.cxx
+++ b/svx/source/table/propertyset.cxx
@@ -32,13 +32,11 @@ FastPropertySetInfo::FastPropertySetInfo( const PropertyVector& rProps )
}
-
FastPropertySetInfo::~FastPropertySetInfo()
{
}
-
void FastPropertySetInfo::addProperties( const PropertyVector& rProps )
{
sal_uInt32 nIndex = maProperties.size();
@@ -54,7 +52,6 @@ void FastPropertySetInfo::addProperties( const PropertyVector& rProps )
}
-
const Property& FastPropertySetInfo::getProperty( const OUString& aName ) throw (UnknownPropertyException )
{
PropertyMap::iterator aIter( maMap.find( aName ) );
@@ -64,7 +61,6 @@ const Property& FastPropertySetInfo::getProperty( const OUString& aName ) throw
}
-
const Property* FastPropertySetInfo::hasProperty( const OUString& aName )
{
PropertyMap::iterator aIter( maMap.find( aName ) );
@@ -84,14 +80,12 @@ Sequence< Property > SAL_CALL FastPropertySetInfo::getProperties() throw (Runtim
}
-
Property SAL_CALL FastPropertySetInfo::getPropertyByName( const OUString& aName ) throw (UnknownPropertyException, RuntimeException, std::exception)
{
return getProperty( aName );
}
-
sal_Bool SAL_CALL FastPropertySetInfo::hasPropertyByName( const OUString& aName ) throw (RuntimeException, std::exception)
{
return hasProperty( aName ) != nullptr;
@@ -103,7 +97,6 @@ FastPropertySet::FastPropertySet( const rtl::Reference< FastPropertySetInfo >& x
}
-
FastPropertySet::~FastPropertySet()
{
}
@@ -118,39 +111,33 @@ Reference< XPropertySetInfo > SAL_CALL FastPropertySet::getPropertySetInfo( ) t
}
-
void SAL_CALL FastPropertySet::setPropertyValue( const OUString& aPropertyName, const Any& aValue ) throw (UnknownPropertyException, PropertyVetoException, IllegalArgumentException, WrappedTargetException, RuntimeException, std::exception)
{
setFastPropertyValue( mxInfo->getProperty( aPropertyName ).Handle, aValue );
}
-
Any SAL_CALL FastPropertySet::getPropertyValue( const OUString& aPropertyName ) throw (UnknownPropertyException, WrappedTargetException, RuntimeException, std::exception)
{
return getFastPropertyValue( mxInfo->getProperty( aPropertyName ).Handle );
}
-
void SAL_CALL FastPropertySet::addPropertyChangeListener( const OUString&, const Reference< XPropertyChangeListener >& ) throw (UnknownPropertyException, WrappedTargetException, RuntimeException, std::exception)
{
}
-
void SAL_CALL FastPropertySet::removePropertyChangeListener( const OUString&, const Reference< XPropertyChangeListener >& ) throw (UnknownPropertyException, WrappedTargetException, RuntimeException, std::exception)
{
}
-
void SAL_CALL FastPropertySet::addVetoableChangeListener( const OUString&, const Reference< XVetoableChangeListener >& ) throw (UnknownPropertyException, WrappedTargetException, RuntimeException, std::exception)
{
}
-
void SAL_CALL FastPropertySet::removeVetoableChangeListener( const OUString&, const Reference< XVetoableChangeListener >& ) throw (UnknownPropertyException, WrappedTargetException, RuntimeException, std::exception)
{
}
@@ -182,7 +169,6 @@ void SAL_CALL FastPropertySet::setPropertyValues( const Sequence< OUString >& aP
}
-
Sequence< Any > SAL_CALL FastPropertySet::getPropertyValues( const Sequence< OUString >& aPropertyNames ) throw (RuntimeException, std::exception)
{
sal_Int32 nCount = aPropertyNames.getLength();
@@ -206,19 +192,16 @@ Sequence< Any > SAL_CALL FastPropertySet::getPropertyValues( const Sequence< OUS
}
-
void SAL_CALL FastPropertySet::addPropertiesChangeListener( const Sequence< OUString >&, const Reference< XPropertiesChangeListener >& ) throw (RuntimeException, std::exception)
{
}
-
void SAL_CALL FastPropertySet::removePropertiesChangeListener( const Reference< XPropertiesChangeListener >& ) throw (RuntimeException, std::exception)
{
}
-
void SAL_CALL FastPropertySet::firePropertiesChangeEvent( const Sequence< OUString >&, const Reference< XPropertiesChangeListener >& ) throw (RuntimeException, std::exception)
{
}