summaryrefslogtreecommitdiff
path: root/basic/source/runtime/comenumwrapper.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'basic/source/runtime/comenumwrapper.hxx')
-rw-r--r--basic/source/runtime/comenumwrapper.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/basic/source/runtime/comenumwrapper.hxx b/basic/source/runtime/comenumwrapper.hxx
index 5637a8b7c58b..560829b331bb 100644
--- a/basic/source/runtime/comenumwrapper.hxx
+++ b/basic/source/runtime/comenumwrapper.hxx
@@ -24,15 +24,15 @@
#include <cppuhelper/implbase.hxx>
-class ComEnumerationWrapper : public ::cppu::WeakImplHelper< css::container::XEnumeration >
+class ComEnumerationWrapper : public ::cppu::WeakImplHelper<css::container::XEnumeration>
{
- css::uno::Reference< css::script::XInvocation > m_xInvocation;
+ css::uno::Reference<css::script::XInvocation> m_xInvocation;
sal_Int32 m_nCurInd;
public:
- explicit ComEnumerationWrapper( const css::uno::Reference< css::script::XInvocation >& xInvocation )
- : m_xInvocation( xInvocation )
- , m_nCurInd( 0 )
+ explicit ComEnumerationWrapper(const css::uno::Reference<css::script::XInvocation>& xInvocation)
+ : m_xInvocation(xInvocation)
+ , m_nCurInd(0)
{
}