diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2022-11-21 12:58:55 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2022-11-21 19:35:40 +0100 |
commit | 4beea25b0797fe9c9acf05e9e4ef926d0726582a (patch) | |
tree | a65938375159ddeacb64f362d0a2d6b2dac4dad2 /svl/source | |
parent | fd0f6a4e83cb4a99839c73d7f545b4b80ef4657a (diff) |
Drop comphelper::OWeakTypeObject, use cppu::WeakImplHelper<> instead
Change-Id: Ie4152d7736ae3f2ffdd3489cd7a444e5035d2422
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/143030
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'svl/source')
-rw-r--r-- | svl/source/items/style.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svl/source/items/style.cxx b/svl/source/items/style.cxx index dfa2ada7e88c..4f4ae926f461 100644 --- a/svl/source/items/style.cxx +++ b/svl/source/items/style.cxx @@ -118,7 +118,7 @@ SfxStyleSheetBase::SfxStyleSheetBase( const OUString& rName, SfxStyleSheetBasePo } SfxStyleSheetBase::SfxStyleSheetBase( const SfxStyleSheetBase& r ) - : comphelper::OWeakTypeObject(r) + : WeakImplHelper() , m_pPool( r.m_pPool ) , nFamily( r.nFamily ) , aName( r.aName ) @@ -564,7 +564,7 @@ SfxStyleSheetBasePool::SfxStyleSheetBasePool( SfxItemPool& r ) : SfxStyleSheetBasePool::SfxStyleSheetBasePool( const SfxStyleSheetBasePool& r ) : SfxBroadcaster( r ), - comphelper::OWeakTypeObject(r), + WeakImplHelper(), pImpl(new SfxStyleSheetBasePool_Impl), rPool(r.rPool) { |