summaryrefslogtreecommitdiff
path: root/uui/source/passworddlg.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-03-06 15:25:03 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-03-06 16:35:51 +0000
commit1122464b10e7bb2cf44954390ded491c002c2c86 (patch)
tree8a3559bfc944dd98812ba59766e0befa6f8119a2 /uui/source/passworddlg.hxx
parent43556658f04abaf01d936b4ad447bf64920e0d2f (diff)
convert password dialog to .ui
Change-Id: I29e58d3992f43c5ee469484d0587843b06663bf1
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;