summaryrefslogtreecommitdiff
path: root/uui/source/passcrtdlg.hxx
diff options
context:
space:
mode:
authorMikhail Voitenko <mav@openoffice.org>2002-10-31 10:08:41 +0000
committerMikhail Voitenko <mav@openoffice.org>2002-10-31 10:08:41 +0000
commitbf9bda898ce9facfb1b41050fe6c043833f87ef8 (patch)
treefa383086027a014c935267ec595e00f46b7da3b0 /uui/source/passcrtdlg.hxx
parent7e8a4211664bcc4325135456d071783330e0f15b (diff)
#102191# password requests and interaction
Diffstat (limited to 'uui/source/passcrtdlg.hxx')
-rw-r--r--uui/source/passcrtdlg.hxx22
1 files changed, 12 insertions, 10 deletions
diff --git a/uui/source/passcrtdlg.hxx b/uui/source/passcrtdlg.hxx
index 96461318152b..9dc6e1da919f 100644
--- a/uui/source/passcrtdlg.hxx
+++ b/uui/source/passcrtdlg.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: passcrtdlg.hxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: mav $ $Date: 2001-10-11 06:53:03 $
+ * last change: $Author: mav $ $Date: 2002-10-31 11:08:38 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -82,26 +82,28 @@
#endif
//============================================================================
-class MasterPasswordCreateDialog : public ModalDialog
+class PasswordCreateDialog : public ModalDialog
{
- FixedText aFTMasterPasswordCrt;
- Edit aEDMasterPasswordCrt;
- FixedText aFTMasterPasswordRepeat;
- Edit aEDMasterPasswordRepeat;
+ FixedText aFTPasswordCrt;
+ Edit aEDPasswordCrt;
+ FixedText aFTPasswordRepeat;
+ Edit aEDPasswordRepeat;
OKButton aOKBtn;
- CancelButton aCancelBtn;
+ CancelButton aCancelBtn;
HelpButton aHelpBtn;
DECL_LINK( OKHdl_Impl, OKButton * );
+ DECL_LINK( EditHdl_Impl, Edit * );
public:
- MasterPasswordCreateDialog( Window* pParent, ResMgr * pResMgr );
+ PasswordCreateDialog( Window* pParent, ResMgr * pResMgr );
- String GetMasterPassword() const { return aEDMasterPasswordCrt.GetText(); }
+ String GetPassword() const { return aEDPasswordCrt.GetText(); }
private:
ResMgr* pResourceMgr;
+ sal_uInt16 nMinLen;
};
#endif // UUI_PASSCRTDLG_HXX