summaryrefslogtreecommitdiff
path: root/sc/source/ui/inc
diff options
context:
space:
mode:
authorSascha Ballach <sab@openoffice.org>2001-02-22 17:13:02 +0000
committerSascha Ballach <sab@openoffice.org>2001-02-22 17:13:02 +0000
commit75ae798f12dfb115259d04aca646942feff3bb04 (patch)
treef607e787c1405d6e77d941acf01cc439fd4d61e7 /sc/source/ui/inc
parent10feb82a30f13f5348f08d0700b28eaa30902aa3 (diff)
new password added; password is only stored as hash value
Diffstat (limited to 'sc/source/ui/inc')
-rw-r--r--sc/source/ui/inc/undotab.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/source/ui/inc/undotab.hxx b/sc/source/ui/inc/undotab.hxx
index 2454610ad720..9b639b9dc71b 100644
--- a/sc/source/ui/inc/undotab.hxx
+++ b/sc/source/ui/inc/undotab.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: undotab.hxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 16:45:02 $
+ * last change: $Author: sab $ $Date: 2001-02-22 18:12:14 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -371,7 +371,7 @@ class ScUndoProtect : public ScSimpleUndo
public:
TYPEINFO();
ScUndoProtect( ScDocShell* pShell, USHORT nNewTab,
- BOOL bNewProtect, const String& rNewPassword );
+ BOOL bNewProtect, const com::sun::star::uno::Sequence<sal_uInt8>& rNewPassword );
virtual ~ScUndoProtect();
virtual void Undo();
@@ -384,7 +384,7 @@ public:
private:
USHORT nTab;
BOOL bProtect;
- String aPassword;
+ com::sun::star::uno::Sequence<sal_uInt8> aPassword;
void DoProtect( BOOL bDo );
};