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:23:15 +0200
commitb7913a75da20269dddebe737715b7a9c9a2ecdf2 (patch)
treea87af2c520eadd3486108cd0835c26b85068aac0 /xmloff
parent732be8f926c2f7f41317b4ce8ff7315ee23e0c40 (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 b76b8a849e25..87eb2d3f8fa4 100644
--- a/xmloff/source/core/unointerfacetouniqueidentifiermapper.cxx
+++ b/xmloff/source/core/unointerfacetouniqueidentifiermapper.cxx
@@ -34,9 +34,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
@@ -56,11 +53,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;
@@ -111,10 +103,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;
@@ -129,10 +117,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;