summaryrefslogtreecommitdiff
path: root/sw/source/filter/basflt/fltshell.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/filter/basflt/fltshell.cxx')
-rw-r--r--sw/source/filter/basflt/fltshell.cxx13
1 files changed, 8 insertions, 5 deletions
diff --git a/sw/source/filter/basflt/fltshell.cxx b/sw/source/filter/basflt/fltshell.cxx
index c8b7ac205890..dbcea439a582 100644
--- a/sw/source/filter/basflt/fltshell.cxx
+++ b/sw/source/filter/basflt/fltshell.cxx
@@ -850,14 +850,16 @@ void SwFltControlStack::Delete(const SwPaM &rPam)
// methods of SwFltAnchor follow
SwFltAnchor::SwFltAnchor(SwFrameFormat* pFormat) :
- SfxPoolItem(RES_FLTR_ANCHOR), m_pFrameFormat(pFormat)
+ SfxPoolItem(RES_FLTR_ANCHOR, SfxItemType::SwFltAnchorType)
+ , m_pFrameFormat(pFormat)
{
m_pListener.reset(new SwFltAnchorListener(this));
m_pListener->StartListening(m_pFrameFormat->GetNotifier());
}
SwFltAnchor::SwFltAnchor(const SwFltAnchor& rCpy) :
- SfxPoolItem(RES_FLTR_ANCHOR), m_pFrameFormat(rCpy.m_pFrameFormat)
+ SfxPoolItem(RES_FLTR_ANCHOR, SfxItemType::SwFltAnchorType)
+ , m_pFrameFormat(rCpy.m_pFrameFormat)
{
m_pListener.reset(new SwFltAnchorListener(this));
m_pListener->StartListening(m_pFrameFormat->GetNotifier());
@@ -926,7 +928,7 @@ SwFltRedline* SwFltRedline::Clone( SfxItemPool* ) const
// methods of SwFltBookmark follow
SwFltBookmark::SwFltBookmark( const OUString& rNa, OUString aVa,
tools::Long nHand, const bool bIsTOCBookmark )
- : SfxPoolItem( RES_FLTR_BOOKMARK )
+ : SfxPoolItem( RES_FLTR_BOOKMARK, SfxItemType::SwFltBookmarkType )
, mnHandle( nHand )
, maName( rNa )
, maVal(std::move( aVa ))
@@ -958,7 +960,7 @@ SwFltBookmark* SwFltBookmark::Clone(SfxItemPool*) const
}
SwFltRDFMark::SwFltRDFMark()
- : SfxPoolItem(RES_FLTR_RDFMARK),
+ : SfxPoolItem(RES_FLTR_RDFMARK, SfxItemType::SwFltRDFMarkType),
m_nHandle(0)
{
}
@@ -1000,7 +1002,8 @@ const std::vector< std::pair<OUString, OUString> >& SwFltRDFMark::GetAttributes(
// methods of SwFltTOX follow
SwFltTOX::SwFltTOX(std::shared_ptr<SwTOXBase> xBase)
- : SfxPoolItem(RES_FLTR_TOX), m_xTOXBase(std::move(xBase)),
+ : SfxPoolItem(RES_FLTR_TOX, SfxItemType::SwFltTOXType)
+ , m_xTOXBase(std::move(xBase)),
m_bHadBreakItem( false ), m_bHadPageDescItem( false )
{
}
2-02-23 17:05:10 +0100'>2012-02-23Get rid of CREATEVERSIONRESMGR[_NAME]Stephan Bergmann 2012-02-23fix build on Windows: use OUStringMatus Kukan 2012-02-19Get rid of size() == 0Elton Chung 2012-02-18Prefer equalsIgnoreAsciiCaseAsciiL(RTL_CONSTASCII_STRINGPARAM("..."))Takeshi Abe 2012-02-17Possible inefficient checking for 'm_EventList' emptiness.Mariusz Dykierek 2012-02-13Fix typos in commentsElton Chung 2012-02-08Added READMEs for modules which used to be in libs-coreJosh Heidenreich 2012-02-05switch to include-based build rather than sourced-based buildNorbert Thiebaud 2012-01-26Replace SvtInetOptions with (simplified) direct configuration access.Stephan Bergmann 2012-01-21Removed some unused parameters; added SAL_UNUSED_PARAMETER.Stephan Bergmann 2012-01-17Replaced SAL_INFO with SAL_WARN were applicable.Marcel Metz 2012-01-16Replaced DBG_ERRORFILE with SAL_INFO.Marcel Metz 2012-01-11SvStringsDtor->std::vectorAugust Sodora 2012-01-11SvStringsDtor->std::vectorAugust Sodora 2012-01-10Remove _SVSTDARR_STRINGSISORTDTORAugust Sodora 2012-01-10simplify LocalFileHelper::ConvertURLToPhysicalNameCaolán McNamara 2012-01-07use custom target for generated sourceDavid Tardon 2012-01-07split module targets' registrationDavid Tardon 2012-01-07use custom target for generated sourceDavid Tardon 2012-01-06Removed unnecessary tools/debug.hxx includes.Marcel Metz