summaryrefslogtreecommitdiff
path: root/sc/inc/scextopt.hxx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2004-08-11 07:57:38 +0000
committerOliver Bolte <obo@openoffice.org>2004-08-11 07:57:38 +0000
commit436521875dff7273a0f8dabde0172a4b61d12796 (patch)
treee58570eb644f90a73a3b534d0a697591f487bf78 /sc/inc/scextopt.hxx
parentb4d2c0a080df0dbddd9ee91c606fd43b793c3528 (diff)
INTEGRATION: CWS encryption (1.9.72); FILE MERGED
2004/07/16 17:41:18 jmarmion 1.9.72.1: #115980# - complete password stuff for calc.
Diffstat (limited to 'sc/inc/scextopt.hxx')
-rw-r--r--sc/inc/scextopt.hxx7
1 files changed, 5 insertions, 2 deletions
diff --git a/sc/inc/scextopt.hxx b/sc/inc/scextopt.hxx
index 62967eaee76d..9647066513c0 100644
--- a/sc/inc/scextopt.hxx
+++ b/sc/inc/scextopt.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: scextopt.hxx,v $
*
- * $Revision: 1.9 $
+ * $Revision: 1.10 $
*
- * last change: $Author: obo $ $Date: 2004-06-04 10:14:45 $
+ * last change: $Author: obo $ $Date: 2004-08-11 08:57:38 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -158,6 +158,7 @@ private:
BOOL bChanged; // for import: copy data only first time to doc
bool bWinProtection; // Excel Workbook Windows protection flag
+ bool bWinEncryption; // Excel Workbook Windows encryption flag
void Reset();
@@ -202,6 +203,8 @@ public:
void AddCodename( const String& ); // -> tables
inline void SetWinProtection(bool bImportWinProtection) {bWinProtection = bImportWinProtection; }
inline bool IsWinProtected() { return bWinProtection; }
+ inline void SetWinEncryption(bool bImportWinEncryption) {bWinEncryption = bImportWinEncryption; }
+ inline bool IsWinEncrypted() { return bWinEncryption; }
};