summaryrefslogtreecommitdiff
path: root/include/vbahelper/vbahelperinterface.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/vbahelper/vbahelperinterface.hxx')
-rw-r--r--include/vbahelper/vbahelperinterface.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/vbahelper/vbahelperinterface.hxx b/include/vbahelper/vbahelperinterface.hxx
index 66a1dc15449d..0a7cfd515e12 100644
--- a/include/vbahelper/vbahelperinterface.hxx
+++ b/include/vbahelper/vbahelperinterface.hxx
@@ -129,7 +129,7 @@ public:
InheritedHelperInterfaceImpl3< Ifc1, Ifc2, Ifc3 >( const css::uno::Reference< ov::XHelperInterface >& xParent, const css::uno::Reference< css::uno::XComponentContext >& xContext ) : Base( xParent, xContext ) {}
};
-// ============================================================================
+
/** Helper macro to implement the method 'getServiceImplName()' of the
'ooo.vba.XHelperInterface' interface. Will return the class name as service
@@ -141,7 +141,7 @@ OUString classname::getServiceImplName() \
return OUString( #classname ); \
}
-// ----------------------------------------------------------------------------
+
/** Helper macro to implement the method 'getServiceNames()' for a single
service name.
@@ -158,7 +158,7 @@ css::uno::Sequence< OUString > classname::getServiceNames() \
return saServiceNames; \
}
-// ----------------------------------------------------------------------------
+
/** Helper macro to declare the methods 'getServiceImplName()' and
'getServiceNames()' of the 'ooo.vba.XHelperInterface' interface in a class
@@ -168,7 +168,7 @@ css::uno::Sequence< OUString > classname::getServiceNames() \
virtual OUString getServiceImplName(); \
virtual css::uno::Sequence< OUString > getServiceNames();
-// ----------------------------------------------------------------------------
+
/** Helper macro to implement the methods 'getServiceImplName()' and
'getServiceNames()' of the 'ooo.vba.XHelperInterface' interface. Will
@@ -178,7 +178,7 @@ css::uno::Sequence< OUString > classname::getServiceNames() \
VBAHELPER_IMPL_GETSERVICEIMPLNAME( classname ) \
VBAHELPER_IMPL_GETSERVICENAMES( classname, servicename )
-// ============================================================================
+
#endif