diff options
author | Björn Milcke <bm@openoffice.org> | 2001-01-22 15:39:27 +0000 |
---|---|---|
committer | Björn Milcke <bm@openoffice.org> | 2001-01-22 15:39:27 +0000 |
commit | 7257d16f1b8d660c9b1f178547ee84b6f9f4ca47 (patch) | |
tree | 73f202d1947a5ff2efc661539c25324a65bb5d77 /xmloff | |
parent | 243dab6e713d9320010927c032cdc734c45de1d9 (diff) |
oops, chaining didn't work after 'upgrade'
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/style/xmlexppr.cxx | 6 | ||||
-rw-r--r-- | xmloff/source/style/xmlimppr.cxx | 6 |
2 files changed, 8 insertions, 4 deletions
diff --git a/xmloff/source/style/xmlexppr.cxx b/xmloff/source/style/xmlexppr.cxx index fbc4df7aa8f1..f9bca4fe134b 100644 --- a/xmloff/source/style/xmlexppr.cxx +++ b/xmloff/source/style/xmlexppr.cxx @@ -2,9 +2,9 @@ * * $RCSfile: xmlexppr.cxx,v $ * - * $Revision: 1.11 $ + * $Revision: 1.12 $ * - * last change: $Author: bm $ $Date: 2001-01-17 10:48:13 $ + * last change: $Author: bm $ $Date: 2001-01-22 16:38:39 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -147,6 +147,8 @@ void SvXMLExportPropertyMapper::ChainExportMapper( xNext = xNext->mxNextMapper; xNext->mxNextMapper = rMapper; } + else + mxNextMapper = rMapper; // if rMapper was already chained, correct // map pointer of successors diff --git a/xmloff/source/style/xmlimppr.cxx b/xmloff/source/style/xmlimppr.cxx index 7fc77130a5de..a6969179d981 100644 --- a/xmloff/source/style/xmlimppr.cxx +++ b/xmloff/source/style/xmlimppr.cxx @@ -2,9 +2,9 @@ * * $RCSfile: xmlimppr.cxx,v $ * - * $Revision: 1.11 $ + * $Revision: 1.12 $ * - * last change: $Author: bm $ $Date: 2001-01-17 10:51:33 $ + * last change: $Author: bm $ $Date: 2001-01-22 16:39:27 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -120,6 +120,8 @@ void SvXMLImportPropertyMapper::ChainImportMapper( xNext = xNext->mxNextMapper; xNext->mxNextMapper = rMapper; } + else + mxNextMapper = rMapper; // if rMapper was already chained, correct // map pointer of successors |