Kaydet (Commit) 22c6d573 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Fix typos

Change-Id: I0314d439412e9fcc0fbc6a7702e5ec3cddafc0c5
üst 3cbfcee3
......@@ -193,11 +193,12 @@ namespace connectivity
return aReturn;
}
}
#define DECLARE_SERVICE_INFO() \
virtual OUString SAL_CALL getImplementationName() throw (::com::sun::star::uno::RuntimeException); \
virtual sal_Bool SAL_CALL supportsService(const OUString& ServiceName) throw(::com::sun::star::uno::RuntimeException); \
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw(::com::sun::star::uno::RuntimeException) \
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw(::com::sun::star::uno::RuntimeException)
#define IMPLEMENT_SERVICE_INFO(classname, implasciiname, serviceasciiname) \
OUString SAL_CALL classname::getImplementationName() throw (::com::sun::star::uno::RuntimeException) \
......@@ -212,9 +213,9 @@ namespace connectivity
} \
sal_Bool SAL_CALL classname::supportsService(const OUString& _rServiceName) throw(::com::sun::star::uno::RuntimeException) \
{ \
return cppu::supportsService(this, ServiceName); \
} \
return cppu::supportsService(this, _rServiceName); \
}
}
#endif // _CONNECTIVITY_OSUBCOMPONENT_HXX_
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment