diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-06-13 21:14:31 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-06-13 21:14:31 +0100 |
commit | db1d76ae80d71762ce0c0fca252550715f4ea415 (patch) | |
tree | 22d7c1a5acd3a1e405242d8ce755c6e1ddb96221 | |
parent | 849ff8c29062f752bcb8f43bd97972bd9c7d34a9 (diff) |
it's c++ not c
-rw-r--r-- | hwpfilter/source/hwpreader.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hwpfilter/source/hwpreader.hxx b/hwpfilter/source/hwpreader.hxx index 7b2b10eb7..3b5a9c5ae 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(); |