diff options
author | Daniel Vogelheim <dvo@openoffice.org> | 2001-09-18 16:33:48 +0000 |
---|---|---|
committer | Daniel Vogelheim <dvo@openoffice.org> | 2001-09-18 16:33:48 +0000 |
commit | 3ac225c65b392558bc4fbd93a0a6b2a3f720a20f (patch) | |
tree | 1eda4732216ec3e43c6445c3b8e10d41155ff7a5 | |
parent | e5ba71a5657eb772eb8d6a63f6d75ccf6331e1ff (diff) |
#91971# fixed severe bug in previous version
-rw-r--r-- | xmloff/source/core/xmlexp.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/xmloff/source/core/xmlexp.cxx b/xmloff/source/core/xmlexp.cxx index b434090442d1..30760a5b88f5 100644 --- a/xmloff/source/core/xmlexp.cxx +++ b/xmloff/source/core/xmlexp.cxx @@ -2,9 +2,9 @@ * * $RCSfile: xmlexp.cxx,v $ * - * $Revision: 1.81 $ + * $Revision: 1.82 $ * - * last change: $Author: dvo $ $Date: 2001-09-18 16:28:34 $ + * last change: $Author: dvo $ $Date: 2001-09-18 17:33:48 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1672,8 +1672,8 @@ void SvXMLElementExport::StartElement( SvXMLExport& rExp, const OUString& rLName, sal_Bool bIWSOutside ) { - OUString sName = rExp.GetNamespaceMap().GetQNameByKey(nPrefixKey, rLName); - rExp.StartElement(sName, bIWSOutside); + aName = rExp.GetNamespaceMap().GetQNameByKey(nPrefixKey, rLName); + rExp.StartElement(aName, bIWSOutside); } SvXMLElementExport::SvXMLElementExport( SvXMLExport& rExp, |