Kaydet (Commit) 3228e1f7 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Mark overriding OwnServiceImpl class template member functions as SAL_OVERRIDE

Change-Id: I767c60733b39de02935de8be8dd9d3e351a38cab
üst 4b60d33f
......@@ -166,15 +166,15 @@ public:
// XServiceInfo
virtual OUString SAL_CALL getImplementationName()
throw (css::uno::RuntimeException) {
throw (css::uno::RuntimeException) SAL_OVERRIDE {
return m_rServiceDecl.getImplementationName();
}
virtual sal_Bool SAL_CALL supportsService( OUString const& name )
throw (css::uno::RuntimeException) {
throw (css::uno::RuntimeException) SAL_OVERRIDE {
return m_rServiceDecl.supportsService(name);
}
virtual css::uno::Sequence< OUString>
SAL_CALL getSupportedServiceNames() throw (css::uno::RuntimeException) {
SAL_CALL getSupportedServiceNames() throw (css::uno::RuntimeException) SAL_OVERRIDE {
return m_rServiceDecl.getSupportedServiceNames();
}
......
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