summaryrefslogtreecommitdiff
path: root/sc/source/ui/unoobj/confuno.cxx
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2008-04-15 13:13:55 +0000
committerVladimir Glazounov <vg@openoffice.org>2008-04-15 13:13:55 +0000
commit8da5bfc4ff3daf3866c8590985f8b177f2029958 (patch)
treed27fd831e500f0eb5f3e1f37c84690fc5d81e07c /sc/source/ui/unoobj/confuno.cxx
parente306dfb067591c5d49fa5d329567dcc2d36df6ca (diff)
INTEGRATION: CWS calcshare2 (1.30.8); FILE MERGED
2008/03/14 20:13:37 mav 1.30.8.1: #i85794# new file locking prototype
Diffstat (limited to 'sc/source/ui/unoobj/confuno.cxx')
-rw-r--r--sc/source/ui/unoobj/confuno.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/ui/unoobj/confuno.cxx b/sc/source/ui/unoobj/confuno.cxx
index f09d386754ac..c5d9540ef00c 100644
--- a/sc/source/ui/unoobj/confuno.cxx
+++ b/sc/source/ui/unoobj/confuno.cxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: confuno.cxx,v $
- * $Revision: 1.31 $
+ * $Revision: 1.32 $
*
* This file is part of OpenOffice.org.
*
@@ -274,7 +274,7 @@ void SAL_CALL ScDocumentConfiguration::setPropertyValue(
sal_Bool bDocShared = sal_False;
if ( aValue >>= bDocShared )
{
- pDocShell->SetDocShared( bDocShared );
+ pDocShell->SetSharedXMLFlag( bDocShared );
}
}
else
@@ -408,7 +408,7 @@ uno::Any SAL_CALL ScDocumentConfiguration::getPropertyValue( const rtl::OUString
// <--
else if ( aPropertyName.compareToAscii( SC_UNO_SHAREDOC ) == 0 )
{
- ScUnoHelpFunctions::SetBoolInAny( aRet, pDocShell->IsDocShared() );
+ ScUnoHelpFunctions::SetBoolInAny( aRet, pDocShell->HasSharedXMLFlagSet() );
}
else
{