summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorThorsten Behrens <tbehrens@suse.com>2013-05-15 02:58:22 +0200
committerThorsten Behrens <tbehrens@suse.com>2013-05-15 11:14:48 +0200
commit5134816d205fc9733a35bb6fd8a6a1a04ec8bc9e (patch)
tree88227e8a4ffde3629b932d03e34cfaac5f366b67 /xmloff
parentc6747ee3a9f02cfbb1a89572180d7bb7ee5be9eb (diff)
Remove redundant doxygen doc strings.
This is already (identically) documented in the header file. Change-Id: I4a10cb0c1d1b1eee80fd828ab95829fb8128433f
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/source/core/unointerfacetouniqueidentifiermapper.cxx16
1 files changed, 0 insertions, 16 deletions
diff --git a/xmloff/source/core/unointerfacetouniqueidentifiermapper.cxx b/xmloff/source/core/unointerfacetouniqueidentifiermapper.cxx
index bbbc87456a07..568943a04092 100644
--- a/xmloff/source/core/unointerfacetouniqueidentifiermapper.cxx
+++ b/xmloff/source/core/unointerfacetouniqueidentifiermapper.cxx
@@ -41,9 +41,6 @@ UnoInterfaceToUniqueIdentifierMapper::~UnoInterfaceToUniqueIdentifierMapper()
);
}
-/** returns a unique identifier for the given uno object. IF a uno object is
- registered more than once, the returned identifier is always the same.
-*/
const OUString& UnoInterfaceToUniqueIdentifierMapper::registerReference( const Reference< XInterface >& rInterface )
{
// Be certain that the references we store in our table are to the
@@ -63,11 +60,6 @@ const OUString& UnoInterfaceToUniqueIdentifierMapper::registerReference( const R
}
}
-/** registers the given uno object with the given identifier.
-
- @returns
- false, if the given identifier already exists and is not associated with the given interface
-*/
bool UnoInterfaceToUniqueIdentifierMapper::registerReference( const OUString& rIdentifier, const Reference< XInterface >& rInterface )
{
IdMap_t::const_iterator aIter;
@@ -118,10 +110,6 @@ bool UnoInterfaceToUniqueIdentifierMapper::registerReference( const OUString& rI
}
}
-/** @returns
- the identifier for the given uno object. If this uno object is not already
- registered, an empty string is returned
-*/
const OUString& UnoInterfaceToUniqueIdentifierMapper::getIdentifier( const Reference< XInterface >& rInterface ) const
{
IdMap_t::const_iterator aIter;
@@ -136,10 +124,6 @@ const OUString& UnoInterfaceToUniqueIdentifierMapper::getIdentifier( const Refer
}
}
-/** @returns
- the uno object that is registered with the given identifier. If no uno object
- is registered with the given identifier, an empty reference is returned.
-*/
const Reference< XInterface >& UnoInterfaceToUniqueIdentifierMapper::getReference( const OUString& rIdentifier ) const
{
IdMap_t::const_iterator aIter;