diff options
author | Jochen Nitschke <j.nitschke+logerrit@ok.de> | 2016-09-28 21:53:59 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-09-29 06:53:56 +0000 |
commit | 2bebc1fc2e76f73d953ca1e1f64803fd4c42a62c (patch) | |
tree | 2dde75809db61a0f03efd141aeb1d41efa1d91c8 /svl | |
parent | d200c344cfd7bf25b6dc6cac5626728c3ef94fff (diff) |
tdf#88206 replace cppu::WeakImplHelper* in sfx2 and svl
some fallout in include/editeng/unotext.hxx
which uses WeakAggImplHelper1 from implbase1.hxx
Change-Id: I7237c46c1eb17752c63eeddc6a3aee41788fbbd2
Reviewed-on: https://gerrit.libreoffice.org/29374
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svl')
-rw-r--r-- | svl/source/items/style.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/source/items/style.cxx b/svl/source/items/style.cxx index f4ab21c60f6e..aa9ea3a79002 100644 --- a/svl/source/items/style.cxx +++ b/svl/source/items/style.cxx @@ -929,7 +929,7 @@ SfxStyleSheetBase* SfxStyleSheetPool::Create( const OUString& rName, } SfxUnoStyleSheet::SfxUnoStyleSheet( const OUString& _rName, const SfxStyleSheetBasePool& _rPool, SfxStyleFamily _eFamily, sal_uInt16 _nMaske ) -: ::cppu::ImplInheritanceHelper2< SfxStyleSheet, css::style::XStyle, css::lang::XUnoTunnel >( _rName, _rPool, _eFamily, _nMaske ) +: cppu::ImplInheritanceHelper<SfxStyleSheet, css::style::XStyle, css::lang::XUnoTunnel>(_rName, _rPool, _eFamily, _nMaske) { } |