From 7595340a63be2e0fc4362c0f57451830e4017d98 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Sat, 26 Jan 2013 23:47:39 +0000 Subject: move entermasterpassword.ui to right place and adapt code Change-Id: Ia0308990eaf1b87de1c7fd673a2a25a45fcfb366 --- uui/source/masterpassworddlg.hxx | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) (limited to 'uui/source/masterpassworddlg.hxx') 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; -- cgit