diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-08-12 14:20:50 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-08-13 08:16:50 +0200 |
commit | 8436c023383e46d50c3d31736ea02896f7282781 (patch) | |
tree | 1cc4000a013af4687b116bae16498029d2dc3e17 /include/sfx2/bindings.hxx | |
parent | bbd598e62fe66352fc366c3e78c0aad753ea2ad7 (diff) |
use unique_ptr in SfxBindings_Impl
Change-Id: I8377fc5e8d79456aaa5d827f62e3d9c74ca8e52a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/100623
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/sfx2/bindings.hxx')
-rw-r--r-- | include/sfx2/bindings.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sfx2/bindings.hxx b/include/sfx2/bindings.hxx index 28b4d5248517..3eb756ebb18d 100644 --- a/include/sfx2/bindings.hxx +++ b/include/sfx2/bindings.hxx @@ -170,7 +170,7 @@ public: SAL_DLLPRIVATE void RegisterInternal_Impl( SfxControllerItem& rBinding ); SAL_DLLPRIVATE void Register_Impl( SfxControllerItem& rBinding, bool ); SAL_DLLPRIVATE SfxWorkWindow* GetWorkWindow_Impl() const; - SAL_DLLPRIVATE void SetWorkWindow_Impl( SfxWorkWindow* ); + SAL_DLLPRIVATE void SetWorkWindow_Impl( std::unique_ptr<SfxWorkWindow> ); SAL_DLLPRIVATE SfxBindings* GetSubBindings_Impl() const; SAL_DLLPRIVATE void SetRecorder_Impl( css::uno::Reference< css::frame::XDispatchRecorder > const & ); SAL_DLLPRIVATE void InvalidateSlotsInMap_Impl(); |