summaryrefslogtreecommitdiff
path: root/uui/source/logindlg.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/logindlg.cxx
parentc82d932510c88a12b260b1684522efbc69f07b26 (diff)
convert UUI module from String to OUString
Change-Id: I0dfcdb0b95112b5ee18b05d0c496059292be65c4
Diffstat (limited to 'uui/source/logindlg.cxx')
-rw-r--r--uui/source/logindlg.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/uui/source/logindlg.cxx b/uui/source/logindlg.cxx
index a5d67b921f1f..8d9d96abd5f9 100644
--- a/uui/source/logindlg.cxx
+++ b/uui/source/logindlg.cxx
@@ -315,7 +315,7 @@ void LoginDialog::SetUseSystemCredentials( sal_Bool bUse )
void LoginDialog::ClearPassword()
{
- aPasswordED.SetText( String() );
+ aPasswordED.SetText( OUString() );
if ( aNameED.GetText().isEmpty() )
aNameED.GrabFocus();
@@ -325,7 +325,7 @@ void LoginDialog::ClearPassword()
void LoginDialog::ClearAccount()
{
- aAccountED.SetText( String() );
+ aAccountED.SetText( OUString() );
aAccountED.GrabFocus();
};