summaryrefslogtreecommitdiff
path: root/uui/source/masterpassworddlg.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-01-26 23:47:39 +0000
committerCaolán McNamara <caolanm@redhat.com>2013-01-27 01:54:07 +0000
commit7595340a63be2e0fc4362c0f57451830e4017d98 (patch)
tree00969cde76e5c35f5c0219a85bed6642e7c08f1b /uui/source/masterpassworddlg.hxx
parent5e11ed7c4383d1b546e694d9b566690a581d589f (diff)
move entermasterpassword.ui to right place and adapt code
Change-Id: Ia0308990eaf1b87de1c7fd673a2a25a45fcfb366
Diffstat (limited to 'uui/source/masterpassworddlg.hxx')
-rw-r--r--uui/source/masterpassworddlg.hxx11
1 files changed, 3 insertions, 8 deletions
diff --git a/uui/source/masterpassworddlg.hxx b/uui/source/masterpassworddlg.hxx
index 3407aa2ef347..33658c135ffb 100644
--- a/uui/source/masterpassworddlg.hxx
+++ b/uui/source/masterpassworddlg.hxx
@@ -30,20 +30,15 @@
//============================================================================
class MasterPasswordDialog : public ModalDialog
{
- FixedText aFTMasterPassword;
- Edit aEDMasterPassword;
- FixedLine aFL;
- OKButton aOKBtn;
- CancelButton aCancelBtn;
- HelpButton aHelpBtn;
-
+ Edit* m_pEDMasterPassword;
+ OKButton* m_pOKBtn;
DECL_LINK(OKHdl_Impl, void *);
public:
MasterPasswordDialog( Window* pParent, ::com::sun::star::task::PasswordRequestMode nDlgMode, ResMgr * pResMgr );
- String GetMasterPassword() const { return aEDMasterPassword.GetText(); }
+ OUString GetMasterPassword() const { return m_pEDMasterPassword->GetText(); }
private:
::com::sun::star::task::PasswordRequestMode nDialogMode;