summaryrefslogtreecommitdiff
path: root/uui/source/masterpasscrtdlg.cxx
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2007-04-26 07:19:27 +0000
committerRüdiger Timm <rt@openoffice.org>2007-04-26 07:19:27 +0000
commit1695cd14f2f16af306eddd5f819cc5975d982187 (patch)
tree06d822ea9c845125f384729895583db01adcb919 /uui/source/masterpasscrtdlg.cxx
parent55ee27b4e53bc8a613deced660c8027afa45109e (diff)
INTEGRATION: CWS residcleanup (1.2.96); FILE MERGED
2007/02/24 19:15:40 pl 1.2.96.1: #i74635# residcleanup
Diffstat (limited to 'uui/source/masterpasscrtdlg.cxx')
-rw-r--r--uui/source/masterpasscrtdlg.cxx22
1 files changed, 11 insertions, 11 deletions
diff --git a/uui/source/masterpasscrtdlg.cxx b/uui/source/masterpasscrtdlg.cxx
index cf13e34b3b59..64ef8c4ea34b 100644
--- a/uui/source/masterpasscrtdlg.cxx
+++ b/uui/source/masterpasscrtdlg.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: masterpasscrtdlg.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: rt $ $Date: 2005-09-09 10:22:50 $
+ * last change: $Author: rt $ $Date: 2007-04-26 08:19:27 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -69,7 +69,7 @@ IMPL_LINK( MasterPasswordCreateDialog, OKHdl_Impl, OKButton *, EMPTYARG )
EndDialog( RET_OK );
else
{
- String aErrorMsg( ResId( STR_ERROR_PASSWORDS_NOT_IDENTICAL, pResourceMgr ));
+ String aErrorMsg( ResId( STR_ERROR_PASSWORDS_NOT_IDENTICAL, *pResourceMgr ));
ErrorBox aErrorBox( this, WB_OK, aErrorMsg );
aErrorBox.Execute();
aEDMasterPasswordCrt.SetText( String() );
@@ -87,15 +87,15 @@ MasterPasswordCreateDialog::MasterPasswordCreateDialog
ResMgr* pResMgr
) :
- ModalDialog( pParent, ResId( DLG_UUI_MASTERPASSWORD_CRT, pResMgr ) ),
+ ModalDialog( pParent, ResId( DLG_UUI_MASTERPASSWORD_CRT, *pResMgr ) ),
- aFTMasterPasswordCrt ( this, ResId( FT_MASTERPASSWORD_CRT ) ),
- aEDMasterPasswordCrt ( this, ResId( ED_MASTERPASSWORD_CRT ) ),
- aFTMasterPasswordRepeat ( this, ResId( FT_MASTERPASSWORD_REPEAT ) ),
- aEDMasterPasswordRepeat ( this, ResId( ED_MASTERPASSWORD_REPEAT ) ),
- aOKBtn ( this, ResId( BTN_MASTERPASSCRT_OK ) ),
- aCancelBtn ( this, ResId( BTN_MASTERPASSCRT_CANCEL ) ),
- aHelpBtn ( this, ResId( BTN_MASTERPASSCRT_HELP ) ),
+ aFTMasterPasswordCrt ( this, ResId( FT_MASTERPASSWORD_CRT, *pResMgr ) ),
+ aEDMasterPasswordCrt ( this, ResId( ED_MASTERPASSWORD_CRT, *pResMgr ) ),
+ aFTMasterPasswordRepeat ( this, ResId( FT_MASTERPASSWORD_REPEAT, *pResMgr ) ),
+ aEDMasterPasswordRepeat ( this, ResId( ED_MASTERPASSWORD_REPEAT, *pResMgr ) ),
+ aOKBtn ( this, ResId( BTN_MASTERPASSCRT_OK, *pResMgr ) ),
+ aCancelBtn ( this, ResId( BTN_MASTERPASSCRT_CANCEL, *pResMgr ) ),
+ aHelpBtn ( this, ResId( BTN_MASTERPASSCRT_HELP, *pResMgr ) ),
pResourceMgr ( pResMgr ),
nMinLen(5)
{