summaryrefslogtreecommitdiff
path: root/uui/source/passworddlg.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/passworddlg.hxx
parent7e8a4211664bcc4325135456d071783330e0f15b (diff)
#102191# password requests and interaction
Diffstat (limited to 'uui/source/passworddlg.hxx')
-rw-r--r--uui/source/passworddlg.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/uui/source/passworddlg.hxx b/uui/source/passworddlg.hxx
index f60c3964d919..6025520dbe8c 100644
--- a/uui/source/passworddlg.hxx
+++ b/uui/source/passworddlg.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: passworddlg.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: mav $ $Date: 2001-10-11 06:53:03 $
+ * last change: $Author: mav $ $Date: 2002-10-31 11:08:39 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -82,10 +82,10 @@
#endif
//============================================================================
-class MasterPasswordDialog : public ModalDialog
+class PasswordDialog : public ModalDialog
{
- FixedText aFTMasterPassword;
- Edit aEDMasterPassword;
+ FixedText aFTPassword;
+ Edit aEDPassword;
OKButton aOKBtn;
CancelButton aCancelBtn;
HelpButton aHelpBtn;
@@ -94,9 +94,9 @@ class MasterPasswordDialog : public ModalDialog
DECL_LINK( OKHdl_Impl, OKButton * );
public:
- MasterPasswordDialog( Window* pParent, ::com::sun::star::task::PasswordRequestMode nDlgMode, ResMgr * pResMgr );
+ PasswordDialog( Window* pParent, ::com::sun::star::task::PasswordRequestMode nDlgMode, ResMgr * pResMgr );
- String GetMasterPassword() const { return aEDMasterPassword.GetText(); }
+ String GetPassword() const { return aEDPassword.GetText(); }
private:
::com::sun::star::task::PasswordRequestMode nDialogMode;