summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2004-10-04 17:11:04 +0000
committerKurt Zenker <kz@openoffice.org>2004-10-04 17:11:04 +0000
commit0eb43101663c01ba8b53d69767d4bb374944633f (patch)
treed065b703ea600d795a52f35d0ad9070d5cb8863a /xmloff
parent65a68bbef1ac1254055092fe9005452c8e12eaa8 (diff)
INTEGRATION: CWS mav09 (1.7.34); FILE MERGED
2004/08/26 15:03:56 mav 1.7.34.1: #i27773# do not store model, in future object could be stored here
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/source/core/XMLEmbeddedObjectImportContext.cxx8
1 files changed, 5 insertions, 3 deletions
diff --git a/xmloff/source/core/XMLEmbeddedObjectImportContext.cxx b/xmloff/source/core/XMLEmbeddedObjectImportContext.cxx
index bd7ed621b1..6bb30e3ff0 100644
--- a/xmloff/source/core/XMLEmbeddedObjectImportContext.cxx
+++ b/xmloff/source/core/XMLEmbeddedObjectImportContext.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: XMLEmbeddedObjectImportContext.cxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: rt $ $Date: 2004-07-13 08:05:41 $
+ * last change: $Author: kz $ $Date: 2004-10-04 18:11:04 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -356,6 +356,9 @@ void XMLEmbeddedObjectImportContext::EndElement()
xHandler->endDocument();
+ // storing part is commented out since it should be done through the object, not the model
+ // TODO/LATER: probably an object should be provided here an be stored here
+#if 0
// Save the object. That's required because the object should not be
// modified (it has been loaded just now). Setting it to unmodified
// only does not work, because it is then assumed that it has been
@@ -375,7 +378,6 @@ void XMLEmbeddedObjectImportContext::EndElement()
aSeq );
}
}
-#if 0
// reset modifies state for the object since it has been imported
// completly and therfor hasn't been modified.
Reference < XModifiable > xModifiable( xComp, UNO_QUERY );