diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2014-03-10 21:31:18 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2014-03-10 21:43:37 +0100 |
commit | 4c0fa3ea2dcc70a1385e6086429b45f7a96a7fe5 (patch) | |
tree | 2e2ba5fe1abae10a5d1be59b1c6706ad3ba0ef70 /oox/source | |
parent | 0abe86ca86b91e83815b0d95e1d08bf7fbc697d2 (diff) |
unused oox::core::Relations::getRelationsFromType
Change-Id: I42e0ebd92d804c34cda42a05b91f45970a22fbe2
Diffstat (limited to 'oox/source')
-rw-r--r-- | oox/source/core/relations.cxx | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/oox/source/core/relations.cxx b/oox/source/core/relations.cxx index d2e1b28190b2..4122678e5e01 100644 --- a/oox/source/core/relations.cxx +++ b/oox/source/core/relations.cxx @@ -71,15 +71,6 @@ const Relation* Relations::getRelationFromFirstType( const OUString& rType ) con return 0; } -RelationsRef Relations::getRelationsFromType( const OUString& rType ) const -{ - RelationsRef xRelations( new Relations( maFragmentPath ) ); - for( const_iterator aIt = begin(), aEnd = end(); aIt != aEnd; ++aIt ) - if( aIt->second.maType.equalsIgnoreAsciiCase( rType ) ) - (*xRelations)[ aIt->first ] = aIt->second; - return xRelations; -} - RelationsRef Relations::getRelationsFromTypeFromOfficeDoc( const OUString& rType ) const { RelationsRef xRelations( new Relations( maFragmentPath ) ); |