diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-10-03 16:51:07 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-10-04 13:07:16 +0200 |
commit | 6ed7696c35599068a29af355da1173416a4e7196 (patch) | |
tree | 608eeebd909a15fbad35c60422efaf7f39430843 /vbahelper/source/msforms/vbacombobox.hxx | |
parent | 6203c2b73db2de239498b517a222c38433fd9168 (diff) |
pass AbstractGeometryAttributes around by std::unique_ptr
Change-Id: I6e06c89b5e4b77c8fc5e3e1a6bf7d76d8ebd7810
Reviewed-on: https://gerrit.libreoffice.org/61349
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vbahelper/source/msforms/vbacombobox.hxx')
-rw-r--r-- | vbahelper/source/msforms/vbacombobox.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vbahelper/source/msforms/vbacombobox.hxx b/vbahelper/source/msforms/vbacombobox.hxx index 633752b7095f..68898a9f6cea 100644 --- a/vbahelper/source/msforms/vbacombobox.hxx +++ b/vbahelper/source/msforms/vbacombobox.hxx @@ -37,7 +37,7 @@ class ScVbaComboBox : public ComboBoxImpl_BASE OUString sSourceName; public: - ScVbaComboBox( const css::uno::Reference< ov::XHelperInterface >& xParent, const css::uno::Reference< css::uno::XComponentContext >& xContext, const css::uno::Reference< css::uno::XInterface >& xControl, const css::uno::Reference< css::frame::XModel >& xModel, ov::AbstractGeometryAttributes* pGeomHelper ); + ScVbaComboBox( const css::uno::Reference< ov::XHelperInterface >& xParent, const css::uno::Reference< css::uno::XComponentContext >& xContext, const css::uno::Reference< css::uno::XInterface >& xControl, const css::uno::Reference< css::frame::XModel >& xModel, std::unique_ptr<ov::AbstractGeometryAttributes> pGeomHelper ); // Attributes virtual css::uno::Any SAL_CALL getListIndex() override; |