diff options
author | Martin Gallwey <mtg@openoffice.org> | 2001-03-19 12:25:57 +0000 |
---|---|---|
committer | Martin Gallwey <mtg@openoffice.org> | 2001-03-19 12:25:57 +0000 |
commit | a3a690529bf23c06b35adf780e0b8eaedcefd764 (patch) | |
tree | 69fb1f1b7ff2a6feb5158cad66b5e2477acecb15 /xmloff | |
parent | 14ad8deef54555a12a4262b8728873ca8d5a5fff (diff) |
fix EndElement to always put the Sequence in the any
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/core/DocumentSettingsContext.cxx | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/xmloff/source/core/DocumentSettingsContext.cxx b/xmloff/source/core/DocumentSettingsContext.cxx index 817e1cd50713..d778cf77bfac 100644 --- a/xmloff/source/core/DocumentSettingsContext.cxx +++ b/xmloff/source/core/DocumentSettingsContext.cxx @@ -2,9 +2,9 @@ * * $RCSfile: DocumentSettingsContext.cxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: sab $ $Date: 2001-03-19 13:10:57 $ + * last change: $Author: mtg $ $Date: 2001-03-19 13:25:57 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -450,13 +450,9 @@ SvXMLImportContext *XMLConfigItemSetContext::CreateChildContext( USHORT nPrefix, void XMLConfigItemSetContext::EndElement() { + rAny <<= aProps.GetSequence(); if (pBaseContext) - { - rAny <<= aProps.GetSequence(); pBaseContext->AddPropertyValue(); - } - else - DBG_ERROR("no BaseContext"); } //============================================================================= |