From 3de0e85039f72f8506213369e262a4837ae88d98 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Mon, 13 Jun 2011 21:14:31 +0100 Subject: it's c++ not c --- hwpfilter/source/hwpreader.hxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'hwpfilter/source') diff --git a/hwpfilter/source/hwpreader.hxx b/hwpfilter/source/hwpreader.hxx index d547befeada6..90e5c30dde51 100644 --- a/hwpfilter/source/hwpreader.hxx +++ b/hwpfilter/source/hwpreader.hxx @@ -218,7 +218,7 @@ public: ~HwpImportFilter(); public: - static Sequence< OUString > getSupportedServiceNames_Static( void ) throw(); + static Sequence< OUString > getSupportedServiceNames_Static() throw(); static OUString getImplementationName_Static() throw(); public: @@ -252,7 +252,7 @@ Reference< XInterface > HwpImportFilter_CreateInstance( return Reference< XInterface > ( (OWeakObject* )p ); } -Sequence< OUString > HwpImportFilter::getSupportedServiceNames_Static( void ) throw () +Sequence< OUString > HwpImportFilter::getSupportedServiceNames_Static() throw () { Sequence< OUString > aRet(1); aRet.getArray()[0] = HwpImportFilter::getImplementationName_Static(); @@ -364,7 +364,7 @@ OUString HwpImportFilter::detect( ::com::sun::star::uno::Sequence< ::com::sun::s return sTypeName; } -Sequence< OUString> HwpImportFilter::getSupportedServiceNames( void ) throw(::com::sun::star::uno::RuntimeException) +Sequence< OUString> HwpImportFilter::getSupportedServiceNames() throw(::com::sun::star::uno::RuntimeException) { Sequence < OUString > aRet(2); OUString* pArray = aRet.getArray(); -- cgit