diff options
author | Rüdiger Timm <rt@openoffice.org> | 2007-04-26 07:19:40 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2007-04-26 07:19:40 +0000 |
commit | f2bf81e5bf365fd40cd5df56125ea8ffedefd46f (patch) | |
tree | 76462fc66833946fab3370884a711e860b7ec35f /uui | |
parent | 1695cd14f2f16af306eddd5f819cc5975d982187 (diff) |
INTEGRATION: CWS residcleanup (1.3.96); FILE MERGED
2007/02/24 19:15:40 pl 1.3.96.1: #i74635# residcleanup
Diffstat (limited to 'uui')
-rw-r--r-- | uui/source/masterpassworddlg.cxx | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/uui/source/masterpassworddlg.cxx b/uui/source/masterpassworddlg.cxx index 0a01691ba89d..bae2cf3d15f7 100644 --- a/uui/source/masterpassworddlg.cxx +++ b/uui/source/masterpassworddlg.cxx @@ -4,9 +4,9 @@ * * $RCSfile: masterpassworddlg.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: rt $ $Date: 2005-09-09 10:24:05 $ + * last change: $Author: rt $ $Date: 2007-04-26 08:19:40 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -69,19 +69,19 @@ MasterPasswordDialog::MasterPasswordDialog ResMgr* pResMgr ) : - ModalDialog( pParent, ResId( DLG_UUI_MASTERPASSWORD, pResMgr ) ), + ModalDialog( pParent, ResId( DLG_UUI_MASTERPASSWORD, *pResMgr ) ), - aFTMasterPassword ( this, ResId( FT_MASTERPASSWORD ) ), - aEDMasterPassword ( this, ResId( ED_MASTERPASSWORD ) ), - aOKBtn ( this, ResId( BTN_MASTERPASSWORD_OK ) ), - aCancelBtn ( this, ResId( BTN_MASTERPASSWORD_CANCEL ) ), - aHelpBtn ( this, ResId( BTN_MASTERPASSWORD_HELP ) ), + aFTMasterPassword ( this, ResId( FT_MASTERPASSWORD, *pResMgr ) ), + aEDMasterPassword ( this, ResId( ED_MASTERPASSWORD, *pResMgr ) ), + aOKBtn ( this, ResId( BTN_MASTERPASSWORD_OK, *pResMgr ) ), + aCancelBtn ( this, ResId( BTN_MASTERPASSWORD_CANCEL, *pResMgr ) ), + aHelpBtn ( this, ResId( BTN_MASTERPASSWORD_HELP, *pResMgr ) ), nDialogMode ( aDialogMode ), pResourceMgr ( pResMgr ) { if( nDialogMode == ::com::sun::star::task::PasswordRequestMode_PASSWORD_REENTER ) { - String aErrorMsg( ResId( STR_ERROR_MASTERPASSWORD_WRONG, pResourceMgr )); + String aErrorMsg( ResId( STR_ERROR_MASTERPASSWORD_WRONG, *pResourceMgr )); ErrorBox aErrorBox( pParent, WB_OK, aErrorMsg ); aErrorBox.Execute(); } |