summaryrefslogtreecommitdiff
path: root/basic/source/classes/propacc.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'basic/source/classes/propacc.cxx')
-rw-r--r--basic/source/classes/propacc.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/basic/source/classes/propacc.cxx b/basic/source/classes/propacc.cxx
index 281ee8d3b906..20b1fda7ac6c 100644
--- a/basic/source/classes/propacc.cxx
+++ b/basic/source/classes/propacc.cxx
@@ -62,7 +62,7 @@ SbPropertyValues::~SbPropertyValues()
-Reference< XPropertySetInfo > SbPropertyValues::getPropertySetInfo(void) throw( RuntimeException, std::exception )
+Reference< XPropertySetInfo > SbPropertyValues::getPropertySetInfo() throw( RuntimeException, std::exception )
{
// create on demand?
if (!m_xInfo.is())
@@ -159,7 +159,7 @@ void SbPropertyValues::removeVetoableChangeListener(
-Sequence< PropertyValue > SbPropertyValues::getPropertyValues(void) throw (::com::sun::star::uno::RuntimeException, std::exception)
+Sequence< PropertyValue > SbPropertyValues::getPropertyValues() throw (::com::sun::star::uno::RuntimeException, std::exception)
{
Sequence<PropertyValue> aRet( m_aPropVals.size() );
for (size_t n = 0; n < m_aPropVals.size(); ++n)
@@ -244,7 +244,7 @@ SbPropertySetInfo::~SbPropertySetInfo()
-Sequence< Property > SbPropertySetInfo::getProperties(void) throw( RuntimeException, std::exception )
+Sequence< Property > SbPropertySetInfo::getProperties() throw( RuntimeException, std::exception )
{
return aImpl.getProperties();
}