summaryrefslogtreecommitdiff
path: root/mysqlc
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-02-03 09:47:44 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-02-03 09:47:44 +0100
commit22c6d5739ece983aacbb2f86a0a25e2e5c7249fe (patch)
treeae55ddb860a90a9ef4298a5b4c03bd972bdbf4cb /mysqlc
parent3cbfcee36dd16e451d76c561eaaaee0ff29b01a5 (diff)
Fix typos
Change-Id: I0314d439412e9fcc0fbc6a7702e5ec3cddafc0c5
Diffstat (limited to 'mysqlc')
-rw-r--r--mysqlc/source/mysqlc_subcomponent.hxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/mysqlc/source/mysqlc_subcomponent.hxx b/mysqlc/source/mysqlc_subcomponent.hxx
index 06475016d24c..5aaf5e9b5f85 100644
--- a/mysqlc/source/mysqlc_subcomponent.hxx
+++ b/mysqlc/source/mysqlc_subcomponent.hxx
@@ -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_