summaryrefslogtreecommitdiff
path: root/stoc/test/testsmgr_cpnt.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'stoc/test/testsmgr_cpnt.cxx')
-rw-r--r--stoc/test/testsmgr_cpnt.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/stoc/test/testsmgr_cpnt.cxx b/stoc/test/testsmgr_cpnt.cxx
index 33d29837010c..807016dcc04a 100644
--- a/stoc/test/testsmgr_cpnt.cxx
+++ b/stoc/test/testsmgr_cpnt.cxx
@@ -95,8 +95,8 @@ public:
// XServiceInfo
OUString SAL_CALL getImplementationName() throw();
sal_Bool SAL_CALL supportsService(const OUString& ServiceName) throw();
- Sequence< OUString > SAL_CALL getSupportedServiceNames(void) throw();
- static Sequence< OUString > SAL_CALL getSupportedServiceNames_Static(void) throw();
+ Sequence< OUString > SAL_CALL getSupportedServiceNames() throw();
+ static Sequence< OUString > SAL_CALL getSupportedServiceNames_Static() throw();
private:
// static XIdlClassRef getStaticIdlClass();
@@ -144,7 +144,7 @@ sal_Bool Test_Manager_Impl::supportsService( const OUString& ServiceName ) throw
// Test_Manager_Impl::getSupportedServiceNames
-Sequence< OUString > Test_Manager_Impl::getSupportedServiceNames(void) throw ()
+Sequence< OUString > Test_Manager_Impl::getSupportedServiceNames() throw ()
{
return getSupportedServiceNames_Static();
}
@@ -152,7 +152,7 @@ Sequence< OUString > Test_Manager_Impl::getSupportedServiceNames(void) throw ()
// Test_Manager_Impl::getSupportedServiceNames_Static
-Sequence< OUString > Test_Manager_Impl::getSupportedServiceNames_Static(void) throw ()
+Sequence< OUString > Test_Manager_Impl::getSupportedServiceNames_Static() throw ()
{
Sequence< OUString > aSNS( 2 );
aSNS.getArray()[0] = SERVICE_NAME;