summaryrefslogtreecommitdiff
path: root/cppuhelper
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2012-03-22 10:27:48 +0100
committerStephan Bergmann <sbergman@redhat.com>2012-03-22 10:37:14 +0100
commit4fc8059d4452e3aca7b1edaf5fba873dca29987b (patch)
tree7e33c376e1e9c2ac7c11631607ec0745b458e5dd /cppuhelper
parent17c4bb3be34c234dab7d4986ddae50e6a7bfa065 (diff)
Fix SAL_CALL placement (so MinGW won't complain)
Diffstat (limited to 'cppuhelper')
-rw-r--r--cppuhelper/inc/cppuhelper/implementationentry.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/cppuhelper/inc/cppuhelper/implementationentry.hxx b/cppuhelper/inc/cppuhelper/implementationentry.hxx
index 173501dc5763..655ac2bc0fa8 100644
--- a/cppuhelper/inc/cppuhelper/implementationentry.hxx
+++ b/cppuhelper/inc/cppuhelper/implementationentry.hxx
@@ -45,17 +45,17 @@ struct ImplementationEntry
/** Function that returns the implementation-name of the implementation
(same as XServiceInfo.getImplementationName() ).
*/
- rtl::OUString ( SAL_CALL * getImplementationName )();
+ rtl::OUString SAL_CALL ( * getImplementationName )();
/** Function that returns all supported servicenames of the implementation
( same as XServiceInfo.getSupportedServiceNames() ).
*/
- com::sun::star::uno::Sequence< rtl::OUString > ( SAL_CALL * getSupportedServiceNames ) ();
+ com::sun::star::uno::Sequence< rtl::OUString > SAL_CALL ( * getSupportedServiceNames ) ();
/** Function that creates a SingleComponentFactory.
*/
- ::com::sun::star::uno::Reference< ::com::sun::star::lang::XSingleComponentFactory >
- ( SAL_CALL * createFactory )(
+ ::com::sun::star::uno::Reference< ::com::sun::star::lang::XSingleComponentFactory > SAL_CALL
+ ( * createFactory )(
ComponentFactoryFunc fptr,
::rtl::OUString const & rImplementationName,
::com::sun::star::uno::Sequence< ::rtl::OUString > const & rServiceNames,