summaryrefslogtreecommitdiff
path: root/sc/inc/appoptio.hxx
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2008-03-07 11:14:31 +0000
committerKurt Zenker <kz@openoffice.org>2008-03-07 11:14:31 +0000
commit920e6faf4bcaf2cb4c99e4ccfab67efca97a6053 (patch)
treef5b1c0660c1f23cd8f1945e2f2a0bfb3c8371055 /sc/inc/appoptio.hxx
parent278ebd17eb7771fdf6b0cf275d2f5fa9b906c377 (diff)
INTEGRATION: CWS calcshare_DEV300 (1.8.14); FILE MERGED
2008/02/25 15:27:00 tbe 1.8.14.1: #i8811# Allow multiple users to edit the same spreadsheet through workbook sharing
Diffstat (limited to 'sc/inc/appoptio.hxx')
-rw-r--r--sc/inc/appoptio.hxx8
1 files changed, 6 insertions, 2 deletions
diff --git a/sc/inc/appoptio.hxx b/sc/inc/appoptio.hxx
index 7170159d00b9..2ea48bde2c5b 100644
--- a/sc/inc/appoptio.hxx
+++ b/sc/inc/appoptio.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: appoptio.hxx,v $
*
- * $Revision: 1.8 $
+ * $Revision: 1.9 $
*
- * last change: $Author: ihi $ $Date: 2007-11-21 19:08:01 $
+ * last change: $Author: kz $ $Date: 2008-03-07 12:14:31 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -105,6 +105,9 @@ public:
void SetDefaultObjectSizeHeight(INT32 nNew) { nDefaultObjectSizeHeight = nNew; }
INT32 GetDefaultObjectSizeHeight() const { return nDefaultObjectSizeHeight; }
+ void SetShowSharedDocumentWarning( BOOL bNew ) { mbShowSharedDocumentWarning = bNew; }
+ BOOL GetShowSharedDocumentWarning() const { return mbShowSharedDocumentWarning; }
+
const ScAppOptions& operator= ( const ScAppOptions& rOpt );
friend SvStream& operator>> ( SvStream& rStream, ScAppOptions& rOpt );
@@ -127,6 +130,7 @@ private:
ScLkUpdMode eLinkMode;
INT32 nDefaultObjectSizeWidth;
INT32 nDefaultObjectSizeHeight;
+ BOOL mbShowSharedDocumentWarning;
};