summaryrefslogtreecommitdiff
path: root/xmloff/source/text/XMLChangedRegionImportContext.cxx
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2003-06-12 06:35:08 +0000
committerRüdiger Timm <rt@openoffice.org>2003-06-12 06:35:08 +0000
commitada9470255ae99c46d71efbff6a17bd7bc40d417 (patch)
treedcb50967aedf5b3309c421c8a2ded549e876e93d /xmloff/source/text/XMLChangedRegionImportContext.cxx
parentf39537b17a44ae543c6ad6ffd2e354f0ed9a1d9a (diff)
INTEGRATION: CWS sw016 (1.5.130); FILE MERGED
2003/05/27 13:46:25 dvo 1.5.130.1: #i14863# fixed references to stack-allocated objects
Diffstat (limited to 'xmloff/source/text/XMLChangedRegionImportContext.cxx')
-rw-r--r--xmloff/source/text/XMLChangedRegionImportContext.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/xmloff/source/text/XMLChangedRegionImportContext.cxx b/xmloff/source/text/XMLChangedRegionImportContext.cxx
index b9734a15d24d..cebc3a932ad0 100644
--- a/xmloff/source/text/XMLChangedRegionImportContext.cxx
+++ b/xmloff/source/text/XMLChangedRegionImportContext.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: XMLChangedRegionImportContext.cxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: dvo $ $Date: 2001-11-30 17:43:02 $
+ * last change: $Author: rt $ $Date: 2003-06-12 07:35:08 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -137,17 +137,17 @@ void XMLChangedRegionImportContext::StartElement(
GetKeyByAttrName( xAttrList->getNameByIndex(nAttr),
&sLocalName );
- OUString& rValue = xAttrList->getValueByIndex(nAttr);
+ OUString sValue = xAttrList->getValueByIndex(nAttr);
if ( XML_NAMESPACE_TEXT == nPrefix )
{
if( IsXMLToken( sLocalName, XML_ID ) )
{
- sID = rValue;
+ sID = sValue;
}
else if( IsXMLToken( sLocalName, XML_MERGE_LAST_PARAGRAPH ) )
{
sal_Bool bTmp;
- if( SvXMLUnitConverter::convertBool(bTmp, rValue) )
+ if( SvXMLUnitConverter::convertBool(bTmp, sValue) )
{
bMergeLastPara = bTmp;
}