summaryrefslogtreecommitdiffstats
path: root/uui/source/masterpasscrtdlg.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'uui/source/masterpasscrtdlg.hxx')
-rw-r--r--uui/source/masterpasscrtdlg.hxx23
1 files changed, 4 insertions, 19 deletions
diff --git a/uui/source/masterpasscrtdlg.hxx b/uui/source/masterpasscrtdlg.hxx
index dfc3daa7399c..0d6ee30fad7c 100644
--- a/uui/source/masterpasscrtdlg.hxx
+++ b/uui/source/masterpasscrtdlg.hxx
@@ -32,22 +32,9 @@
class MasterPasswordCreateDialog : public ModalDialog
{
private:
- FixedText aFTInfoText;
- FixedLine aFLInfoText;
-
- FixedText aFTMasterPasswordCrt;
- Edit aEDMasterPasswordCrt;
- FixedText aFTMasterPasswordRepeat;
- Edit aEDMasterPasswordRepeat;
-
- FixedText aFTCautionText;
- FixedLine aFLCautionText;
-
- FixedText aFTMasterPasswordWarning;
- FixedLine aFL;
- OKButton aOKBtn;
- CancelButton aCancelBtn;
- HelpButton aHelpBtn;
+ Edit* m_pEDMasterPasswordCrt;
+ Edit* m_pEDMasterPasswordRepeat;
+ OKButton* m_pOKBtn;
DECL_LINK(OKHdl_Impl, void *);
@@ -56,13 +43,11 @@ private:
public:
MasterPasswordCreateDialog( Window* pParent, ResMgr * pResMgr );
- String GetMasterPassword() const { return aEDMasterPasswordCrt.GetText(); }
+ OUString GetMasterPassword() const { return m_pEDMasterPasswordCrt->GetText(); }
private:
ResMgr* pResourceMgr;
sal_uInt16 nMinLen;
-
- void CalculateTextHeight();
};
#endif // UUI_MASTERPASSCRTDLG_HXX