summaryrefslogtreecommitdiff
path: root/sw/source/uibase/utlui/uiitems.cxx
diff options
context:
space:
mode:
authorOliver Specht <oliver.specht@cib.de>2024-05-22 12:26:46 +0200
committerThorsten Behrens <thorsten.behrens@allotropia.de>2024-06-19 23:32:20 +0200
commit04a5157e9526c1570034fc88973a061138b133ea (patch)
tree8fa13473284d737147828fb0898c9abca7c9a86d /sw/source/uibase/utlui/uiitems.cxx
parent60c00a1d12fe531dbec8c285eaf8bfa02684be3c (diff)
Add SfxItemType to SfxPoolItem cib_contract49c-24.2.4.2.M1
The SfxPoolItem has a new member SfxItemType m_eItemType to compare types based on enums instead of typeinfo() which consumes a lot of time e.g. while AutoFormat is running Change-Id: I033ce67bc9a28ee4790f162380314de85fb4154e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/166452 Tested-by: Jenkins Reviewed-by: Thorsten Behrens <thorsten.behrens@allotropia.de> Reviewed-by: Armin Le Grand <Armin.Le.Grand@me.com> Reviewed-on: https://gerrit.libreoffice.org/c/core/+/169185 Tested-by: Thorsten Behrens <thorsten.behrens@allotropia.de>
Diffstat (limited to 'sw/source/uibase/utlui/uiitems.cxx')
-rw-r--r--sw/source/uibase/utlui/uiitems.cxx9
1 files changed, 5 insertions, 4 deletions
diff --git a/sw/source/uibase/utlui/uiitems.cxx b/sw/source/uibase/utlui/uiitems.cxx
index b88751abdddb..7aafbfdfce16 100644
--- a/sw/source/uibase/utlui/uiitems.cxx
+++ b/sw/source/uibase/utlui/uiitems.cxx
@@ -36,7 +36,7 @@ using namespace ::com::sun::star;
using namespace ::com::sun::star::uno;
SwPageFootnoteInfoItem::SwPageFootnoteInfoItem( SwPageFootnoteInfo const & rInfo) :
- SfxPoolItem( FN_PARAM_FTN_INFO ),
+ SfxPoolItem( FN_PARAM_FTN_INFO, SfxItemType::SwPageFootnoteInfoItemType ),
m_aFootnoteInfo(rInfo)
{
}
@@ -191,7 +191,7 @@ bool SwPageFootnoteInfoItem::PutValue(const Any& rVal, sal_uInt8 nMemberId)
}
SwPtrItem::SwPtrItem( const sal_uInt16 nId, void* pPtr ) :
- SfxPoolItem( nId ),
+ SfxPoolItem( nId, SfxItemType::SwPtrItemType ),
m_pMisc(pPtr)
{
}
@@ -212,7 +212,8 @@ bool SwPtrItem::operator==( const SfxPoolItem& rAttr ) const
// SwUINumRuleItem for the NumTabPages of the FormatNumRule/Styleists
SwUINumRuleItem::SwUINumRuleItem( const SwNumRule& rRul )
- : SfxPoolItem( FN_PARAM_ACT_NUMBER ), m_pRule( new SwNumRule( rRul ) )
+ : SfxPoolItem( FN_PARAM_ACT_NUMBER, SfxItemType::SwUINumRuleItemType )
+ , m_pRule( new SwNumRule( rRul ) )
{
}
@@ -258,7 +259,7 @@ bool SwUINumRuleItem::PutValue( const uno::Any& rVal, sal_uInt8 /*nMemberId*/ )
}
SwPaMItem::SwPaMItem( const sal_uInt16 nId, SwPaM* pPaM ) :
- SfxPoolItem( nId ),
+ SfxPoolItem( nId, SfxItemType::SwPaMItemType ),
m_pPaM(pPaM)
{
}