summaryrefslogtreecommitdiff
path: root/include/svl
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2021-05-18 15:35:17 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2021-05-18 18:20:34 +0200
commit81def52473d8de50f7b0570c9867573256b8afa7 (patch)
tree965ba42076d57d711e240ea1c1bac6409a0da93e /include/svl
parentb7c44d7a34027210c06c9936f273fb1a3523a81a (diff)
loplugin:unusedmethods
Change-Id: I8191f4a9eb25b12242354813303fb7d30489d2c4 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/115752 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/svl')
-rw-r--r--include/svl/itemprop.hxx37
1 files changed, 0 insertions, 37 deletions
diff --git a/include/svl/itemprop.hxx b/include/svl/itemprop.hxx
index c6f6b9bd1425..d6461558abde 100644
--- a/include/svl/itemprop.hxx
+++ b/include/svl/itemprop.hxx
@@ -69,43 +69,6 @@ struct SfxItemPropertyMapEntry
}
};
-struct SfxItemPropertySimpleEntry
-{
- css::uno::Type aType;
- sal_uInt16 nWID;
- /// flag bitmap, @see css::beans::PropertyAttribute
- sal_Int16 nFlags;
- sal_uInt8 nMemberId;
- PropertyMoreFlags nMoreFlags = PropertyMoreFlags::NONE;
-
- SfxItemPropertySimpleEntry()
- : nWID( 0 )
- , nFlags( 0 )
- , nMemberId( 0 )
- {
- }
-
- SfxItemPropertySimpleEntry(sal_uInt16 _nWID, css::uno::Type const & _rType,
- sal_Int16 _nFlags)
- : aType( _rType )
- , nWID( _nWID )
- , nFlags( _nFlags )
- , nMemberId( 0 )
- {
- assert(_nFlags <= 0x1ff );
- }
-
- explicit SfxItemPropertySimpleEntry( const SfxItemPropertyMapEntry& rMapEntry )
- : aType( rMapEntry.aType )
- , nWID( rMapEntry.nWID )
- , nFlags( rMapEntry.nFlags )
- , nMemberId( rMapEntry.nMemberId )
- , nMoreFlags( rMapEntry.nMoreFlags )
- {
- }
-
-};
-
struct SfxItemPropertyMapCompare
{
bool operator() ( const SfxItemPropertyMapEntry * lhs, const SfxItemPropertyMapEntry * rhs ) const