diff options
author | Tor Lillqvist <tml@iki.fi> | 2011-09-28 23:23:33 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2011-09-28 23:23:33 +0300 |
commit | 0a56437e9ce6a228643e2831fe4877e8597cfa6b (patch) | |
tree | 88aff5daae8f422ba8f268e2d243d50278a6e4f5 /editeng | |
parent | 61095eac05261383211509b476bb15fe4bde6377 (diff) |
WaE: base class should be explicitly initialized in the copy constructor
Diffstat (limited to 'editeng')
-rw-r--r-- | editeng/source/uno/unotext.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editeng/source/uno/unotext.cxx b/editeng/source/uno/unotext.cxx index 627f94b38575..ac241d2fd477 100644 --- a/editeng/source/uno/unotext.cxx +++ b/editeng/source/uno/unotext.cxx @@ -214,6 +214,7 @@ SvxUnoTextRangeBase::SvxUnoTextRangeBase( const SvxEditSource* pSource, const Sv SvxUnoTextRangeBase::SvxUnoTextRangeBase( const SvxUnoTextRangeBase& rRange ) throw() : SvxUnoTextRangeBase_Base() +, osl::DebugBase<SvxUnoTextRangeBase>() , mpPropSet(rRange.getPropertySet()) { SolarMutexGuard aGuard; |