diff options
author | Oliver Bolte <obo@openoffice.org> | 2004-11-16 09:07:21 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2004-11-16 09:07:21 +0000 |
commit | d2750d907d7feaa140d693faa007a67ff07f9b00 (patch) | |
tree | 725bb0f43feb96353465f4f12378c6b71136ff07 /xmloff/source | |
parent | b0c80fd5e10b50e57282341b5e1958837a58d80d (diff) |
INTEGRATION: CWS eforms2 (1.9.108); FILE MERGED
2004/01/28 14:49:20 dvo 1.9.108.2: #114856# add operator=
(this is an empty commit; the previous check-in message was incorrect)
2004/01/28 14:44:18 dvo 1.9.108.1: #114856# SvXMLNamespaceMap: use 'const' for constructor argument
Diffstat (limited to 'xmloff/source')
-rw-r--r-- | xmloff/source/core/nmspmap.cxx | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/xmloff/source/core/nmspmap.cxx b/xmloff/source/core/nmspmap.cxx index 8736773573f6..ece3d4e220d4 100644 --- a/xmloff/source/core/nmspmap.cxx +++ b/xmloff/source/core/nmspmap.cxx @@ -2,9 +2,9 @@ * * $RCSfile: nmspmap.cxx,v $ * - * $Revision: 1.9 $ + * $Revision: 1.10 $ * - * last change: $Author: rt $ $Date: 2003-06-12 07:34:44 $ + * last change: $Author: obo $ $Date: 2004-11-16 10:07:21 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -111,6 +111,12 @@ SvXMLNamespaceMap::SvXMLNamespaceMap( const SvXMLNamespaceMap& rMap ) aNameMap = rMap.aNameMap; } +void SvXMLNamespaceMap::operator=( const SvXMLNamespaceMap& rMap ) +{ + aNameHash = rMap.aNameHash; + aNameMap = rMap.aNameMap; +} + SvXMLNamespaceMap::~SvXMLNamespaceMap() { QNameCache::iterator aIter = aQNameCache.begin(), aEnd = aQNameCache.end(); |