diff options
author | Rüdiger Timm <rt@openoffice.org> | 2007-04-26 07:20:15 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2007-04-26 07:20:15 +0000 |
commit | 30d5a0cd07fcd31e70af9b937c94378385b9b3a5 (patch) | |
tree | bfb4e8bca35dcd1d5a9c6172ac5514b96be12a87 /uui | |
parent | 228721acfecabe42a4adbdf727745fe40231ae0d (diff) |
INTEGRATION: CWS residcleanup (1.5.96); FILE MERGED
2007/02/24 19:15:40 pl 1.5.96.1: #i74635# residcleanup
Diffstat (limited to 'uui')
-rw-r--r-- | uui/source/passworddlg.cxx | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/uui/source/passworddlg.cxx b/uui/source/passworddlg.cxx index 937686403c2a..e325950b25e6 100644 --- a/uui/source/passworddlg.cxx +++ b/uui/source/passworddlg.cxx @@ -4,9 +4,9 @@ * * $RCSfile: passworddlg.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: rt $ $Date: 2005-09-09 10:26:28 $ + * last change: $Author: rt $ $Date: 2007-04-26 08:20:15 $ * * 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 @@ PasswordDialog::PasswordDialog ResMgr* pResMgr ) : - ModalDialog( pParent, ResId( DLG_UUI_PASSWORD, pResMgr ) ), + ModalDialog( pParent, ResId( DLG_UUI_PASSWORD, *pResMgr ) ), - aFTPassword ( this, ResId( FT_PASSWORD ) ), - aEDPassword ( this, ResId( ED_PASSWORD ) ), - aOKBtn ( this, ResId( BTN_PASSWORD_OK ) ), - aCancelBtn ( this, ResId( BTN_PASSWORD_CANCEL ) ), - aHelpBtn ( this, ResId( BTN_PASSWORD_HELP ) ), + aFTPassword ( this, ResId( FT_PASSWORD, *pResMgr ) ), + aEDPassword ( this, ResId( ED_PASSWORD, *pResMgr ) ), + aOKBtn ( this, ResId( BTN_PASSWORD_OK, *pResMgr ) ), + aCancelBtn ( this, ResId( BTN_PASSWORD_CANCEL, *pResMgr ) ), + aHelpBtn ( this, ResId( BTN_PASSWORD_HELP, *pResMgr ) ), nDialogMode ( aDialogMode ), pResourceMgr ( pResMgr ) { if( nDialogMode == ::com::sun::star::task::PasswordRequestMode_PASSWORD_REENTER ) { - String aErrorMsg( ResId( STR_ERROR_PASSWORD_WRONG, pResourceMgr )); + String aErrorMsg( ResId( STR_ERROR_PASSWORD_WRONG, *pResourceMgr )); ErrorBox aErrorBox( pParent, WB_OK, aErrorMsg ); aErrorBox.Execute(); } |