summaryrefslogtreecommitdiff
path: root/svl/source
diff options
context:
space:
mode:
Diffstat (limited to 'svl/source')
-rw-r--r--svl/source/items/style.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svl/source/items/style.cxx b/svl/source/items/style.cxx
index 0ab10a4c7801..53297366aa95 100644
--- a/svl/source/items/style.cxx
+++ b/svl/source/items/style.cxx
@@ -119,7 +119,7 @@ SfxStyleSheetBase::SfxStyleSheetBase( const OUString& rName, SfxStyleSheetBasePo
}
SfxStyleSheetBase::SfxStyleSheetBase( const SfxStyleSheetBase& r )
- : comphelper::OWeakTypeObject()
+ : comphelper::OWeakTypeObject(r)
, m_pPool( r.m_pPool )
, nFamily( r.nFamily )
, aName( r.aName )
@@ -573,7 +573,7 @@ SfxStyleSheetBasePool::SfxStyleSheetBasePool( SfxItemPool& r ) :
SfxStyleSheetBasePool::SfxStyleSheetBasePool( const SfxStyleSheetBasePool& r ) :
SfxBroadcaster( r ),
- comphelper::OWeakTypeObject(),
+ comphelper::OWeakTypeObject(r),
pImpl(new SfxStyleSheetBasePool_Impl),
rPool(r.rPool),
nSearchFamily(r.nSearchFamily),