summaryrefslogtreecommitdiffstats
path: root/uui/source/passworddlg.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'uui/source/passworddlg.hxx')
-rw-r--r--uui/source/passworddlg.hxx15
1 files changed, 6 insertions, 9 deletions
diff --git a/uui/source/passworddlg.hxx b/uui/source/passworddlg.hxx
index 933c7130c951..bb5a592165b2 100644
--- a/uui/source/passworddlg.hxx
+++ b/uui/source/passworddlg.hxx
@@ -32,14 +32,11 @@
class PasswordDialog : public ModalDialog
{
- FixedText aFTPassword;
- Edit aEDPassword;
- FixedText aFTConfirmPassword;
- Edit aEDConfirmPassword;
- OKButton aOKBtn;
- CancelButton aCancelBtn;
- HelpButton aHelpBtn;
- FixedLine aFixedLine1;
+ FixedText* m_pFTPassword;
+ Edit* m_pEDPassword;
+ FixedText* m_pFTConfirmPassword;
+ Edit* m_pEDConfirmPassword;
+ OKButton* m_pOKBtn;
sal_uInt16 nMinLen;
OUString aPasswdMismatch;
@@ -51,7 +48,7 @@ public:
bool bOpenToModify = false, bool bIsSimplePasswordRequest = false );
void SetMinLen( sal_uInt16 nMin ) { nMinLen = nMin; }
- OUString GetPassword() const { return aEDPassword.GetText(); }
+ OUString GetPassword() const { return m_pEDPassword->GetText(); }
private:
::com::sun::star::task::PasswordRequestMode nDialogMode;