summaryrefslogtreecommitdiffstats
path: root/uui/source/masterpasscrtdlg.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-09-25 12:18:11 +0200
committerNoel Grandin <noel@peralex.com>2013-10-01 10:08:40 +0200
commitb879adc316d6628fad7be35e758052860171bcf2 (patch)
tree1f65afe787b1cc680bcd055a90e878047f395052 /uui/source/masterpasscrtdlg.cxx
parentconvert remnants of String to OUString in SFX2 module (diff)
downloadcore-b879adc316d6628fad7be35e758052860171bcf2.tar.gz
core-b879adc316d6628fad7be35e758052860171bcf2.zip
convert UUI module from String to OUString
Change-Id: I0dfcdb0b95112b5ee18b05d0c496059292be65c4
Diffstat (limited to 'uui/source/masterpasscrtdlg.cxx')
-rw-r--r--uui/source/masterpasscrtdlg.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/uui/source/masterpasscrtdlg.cxx b/uui/source/masterpasscrtdlg.cxx
index 345ab0d10bf5..792147694c57 100644
--- a/uui/source/masterpasscrtdlg.cxx
+++ b/uui/source/masterpasscrtdlg.cxx
@@ -42,11 +42,11 @@ IMPL_LINK_NOARG(MasterPasswordCreateDialog, OKHdl_Impl)
EndDialog( RET_OK );
else
{
- String aErrorMsg( ResId( STR_ERROR_PASSWORDS_NOT_IDENTICAL, *pResourceMgr ));
+ OUString aErrorMsg( ResId( STR_ERROR_PASSWORDS_NOT_IDENTICAL, *pResourceMgr ));
ErrorBox aErrorBox( this, WB_OK, aErrorMsg );
aErrorBox.Execute();
- m_pEDMasterPasswordCrt->SetText( String() );
- m_pEDMasterPasswordRepeat->SetText( String() );
+ m_pEDMasterPasswordCrt->SetText( OUString() );
+ m_pEDMasterPasswordRepeat->SetText( OUString() );
m_pEDMasterPasswordCrt->GrabFocus();
}
return 1;