diff options
author | Christian Lippka <cl@openoffice.org> | 2001-04-20 13:01:07 +0000 |
---|---|---|
committer | Christian Lippka <cl@openoffice.org> | 2001-04-20 13:01:07 +0000 |
commit | 1964a7dc31ceac4ca50d8966be1a3eef91841e12 (patch) | |
tree | a59949cc278e151598dab3f0b0f74d1c5643f1e2 /xmloff/source/core | |
parent | 64a26791c54f8ab285a9e79679394a4a265001c7 (diff) |
#82045# reset view settings after export so they will be generated again on next export
Diffstat (limited to 'xmloff/source/core')
-rw-r--r-- | xmloff/source/core/xmlexp.cxx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/xmloff/source/core/xmlexp.cxx b/xmloff/source/core/xmlexp.cxx index 2b5a5e532d96..099ecce0c70a 100644 --- a/xmloff/source/core/xmlexp.cxx +++ b/xmloff/source/core/xmlexp.cxx @@ -2,9 +2,9 @@ * * $RCSfile: xmlexp.cxx,v $ * - * $Revision: 1.56 $ + * $Revision: 1.57 $ * - * last change: $Author: sab $ $Date: 2001-04-20 10:37:39 $ + * last change: $Author: cl $ $Date: 2001-04-20 14:01:07 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -819,6 +819,9 @@ void SvXMLExport::_ExportViewSettings(const XMLSettingsExportHelper& rSettingsEx aProp.Value <<= xIndexAccess; aProps[nOldLength] = aProp; } + + xIndexAccess = NULL; + xViewDataSupplier->setViewData( xIndexAccess ); } OUString sViewSettings(RTL_CONSTASCII_USTRINGPARAM(sXML_view_settings)); rSettingsExportHelper.exportSettings(aProps, sViewSettings); |