summaryrefslogtreecommitdiff
path: root/hwpfilter
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-06-13 21:14:31 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-06-13 21:14:31 +0100
commit3de0e85039f72f8506213369e262a4837ae88d98 (patch)
tree016edf3ca7cb85153fe2d6561ffeae1a26cbd23d /hwpfilter
parent1663abc706497fb0f56ee0b548f345ff76257520 (diff)
it's c++ not c
Diffstat (limited to 'hwpfilter')
-rw-r--r--hwpfilter/source/hwpreader.hxx6
1 files changed, 3 insertions, 3 deletions
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();