diff options
author | Jochen Nitschke <j.nitschke+logerrit@ok.de> | 2017-08-21 23:32:51 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-08-22 20:55:54 +0200 |
commit | 728e42a9dae8305f6f92628d6d9ba616baaf0426 (patch) | |
tree | 4ff27bec324e0ccea95c195ec399599098b4716e /editeng | |
parent | 66e32324f6441818612f088cfa5c8082c8ceea32 (diff) |
drop unused SvxScriptTypeItem
apparently there was never a user for this item since initial commit
in the year 2000. SvxScriptSetItem gets the ScriptType by parameter
see GetItemOfScript and PutItemForScriptType.
remove SID_ATTR_CHAR_SCRIPTTYPE and don't put the item in any set.
keep the gap in the ID range because it's not part of any range
and there are already other gaps.
Change-Id: Iee24f13b329593af2dc5548d8b6bc2282c2dc5b3
Reviewed-on: https://gerrit.libreoffice.org/41423
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'editeng')
-rw-r--r-- | editeng/source/items/textitem.cxx | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/editeng/source/items/textitem.cxx b/editeng/source/items/textitem.cxx index 24c33bc36aa2..7395c40c50e4 100644 --- a/editeng/source/items/textitem.cxx +++ b/editeng/source/items/textitem.cxx @@ -2913,19 +2913,6 @@ bool SvxCharReliefItem::QueryValue( css::uno::Any& rVal, } /************************************************************************* -|* class SvxScriptTypeItemItem -*************************************************************************/ - -SvxScriptTypeItem::SvxScriptTypeItem( SvtScriptType nType ) - : SfxUInt16Item( SID_ATTR_CHAR_SCRIPTTYPE, static_cast<sal_uInt16>(nType) ) -{ -} -SfxPoolItem* SvxScriptTypeItem::Clone( SfxItemPool * ) const -{ - return new SvxScriptTypeItem( static_cast<SvtScriptType>(GetValue()) ); -} - -/************************************************************************* |* class SvxScriptSetItem *************************************************************************/ @@ -2938,7 +2925,6 @@ SvxScriptSetItem::SvxScriptSetItem( sal_uInt16 nSlotId, SfxItemPool& rPool ) GetItemSet().MergeRange( nLatin, nLatin ); GetItemSet().MergeRange( nAsian, nAsian ); GetItemSet().MergeRange( nComplex, nComplex ); - GetItemSet().MergeRange( SID_ATTR_CHAR_SCRIPTTYPE, SID_ATTR_CHAR_SCRIPTTYPE ); } SfxPoolItem* SvxScriptSetItem::Clone( SfxItemPool * ) const |