summaryrefslogtreecommitdiff
path: root/embeddedobj
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2006-11-01 17:20:05 +0000
committerVladimir Glazounov <vg@openoffice.org>2006-11-01 17:20:05 +0000
commit741705ab6bd98dd23549c2198bd0cfa47cdc3fdf (patch)
tree89076fab1becd9671ccc1bc58f977dc04949f27f /embeddedobj
parent9335550afbb4a84b07198abe8524454d30d21c92 (diff)
INTEGRATION: CWS inplaceobjects (1.23.18); FILE MERGED
2006/09/28 20:03:03 mba 1.23.18.3: RESYNC: (1.24-1.25); FILE MERGED 2006/07/06 14:29:04 mba 1.23.18.2: RESYNC: (1.23-1.24); FILE MERGED 2006/06/09 10:36:28 mba 1.23.18.1: #i66239#: support individual MiscStatus
Diffstat (limited to 'embeddedobj')
-rw-r--r--embeddedobj/source/commonembedding/persistence.cxx10
1 files changed, 8 insertions, 2 deletions
diff --git a/embeddedobj/source/commonembedding/persistence.cxx b/embeddedobj/source/commonembedding/persistence.cxx
index 5d233595d61d..59a53fe15551 100644
--- a/embeddedobj/source/commonembedding/persistence.cxx
+++ b/embeddedobj/source/commonembedding/persistence.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: persistence.cxx,v $
*
- * $Revision: 1.27 $
+ * $Revision: 1.28 $
*
- * last change: $Author: obo $ $Date: 2006-10-12 11:20:41 $
+ * last change: $Author: vg $ $Date: 2006-11-01 18:20:05 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -970,6 +970,12 @@ void SAL_CALL OCommonEmbeddedObject::setPersistentEntry(
{
lObjArgs[nObjInd].Value >>= m_aDefaultParentBaseURL;
}
+ else if ( lObjArgs[nObjInd].Name.equalsAscii( "IndividualMiscStatus" ) )
+ {
+ sal_Int64 nMiscStatus=0;
+ lObjArgs[nObjInd].Value >>= nMiscStatus;
+ m_nMiscStatus |= nMiscStatus;
+ }
sal_Int32 nStorageMode = m_bReadOnly ? embed::ElementModes::READ : embed::ElementModes::READWRITE;