diff options
Diffstat (limited to 'sw/source/ui')
-rw-r--r-- | sw/source/ui/vba/vbapalette.cxx | 2 | ||||
-rw-r--r-- | sw/source/ui/vba/vbatabstops.cxx | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/sw/source/ui/vba/vbapalette.cxx b/sw/source/ui/vba/vbapalette.cxx index d86235859b23..ad67525d7be2 100644 --- a/sw/source/ui/vba/vbapalette.cxx +++ b/sw/source/ui/vba/vbapalette.cxx @@ -87,8 +87,8 @@ public: } VbaPalette::VbaPalette() + : mxPalette(new DefaultPalette()) { - mxPalette = new DefaultPalette(); } diff --git a/sw/source/ui/vba/vbatabstops.cxx b/sw/source/ui/vba/vbatabstops.cxx index 567ee1234a4f..0c902a18d40a 100644 --- a/sw/source/ui/vba/vbatabstops.cxx +++ b/sw/source/ui/vba/vbatabstops.cxx @@ -79,9 +79,8 @@ private: public: /// @throws css::uno::RuntimeException - TabStopCollectionHelper( const css::uno::Reference< ov::XHelperInterface >& xParent, const css::uno::Reference< css::uno::XComponentContext > & xContext, const css::uno::Reference< css::beans::XPropertySet >& xParaProps ): mxParent( xParent ), mxContext( xContext ) + TabStopCollectionHelper( const css::uno::Reference< ov::XHelperInterface >& xParent, const css::uno::Reference< css::uno::XComponentContext > & xContext, const css::uno::Reference< css::beans::XPropertySet >& xParaProps ): mxParent( xParent ), mxContext( xContext ), mnTabStops(lcl_getTabStops( xParaProps ).getLength()) { - mnTabStops = lcl_getTabStops( xParaProps ).getLength(); } virtual sal_Int32 SAL_CALL getCount( ) override |