summaryrefslogtreecommitdiff
path: root/uui
diff options
context:
space:
mode:
Diffstat (limited to 'uui')
-rw-r--r--uui/source/passwordcontainer.cxx10
1 files changed, 4 insertions, 6 deletions
diff --git a/uui/source/passwordcontainer.cxx b/uui/source/passwordcontainer.cxx
index 1c46f3ef1a2d..98de69067261 100644
--- a/uui/source/passwordcontainer.cxx
+++ b/uui/source/passwordcontainer.cxx
@@ -78,24 +78,22 @@ bool fillContinuation(
{
if (xSupplyAuthentication->canSetUserName())
xSupplyAuthentication->
- setUserName(aRec.UserList[0].UserName.getStr());
+ setUserName(aRec.UserList[0].UserName);
if (xSupplyAuthentication->canSetPassword())
xSupplyAuthentication->
- setPassword(aRec.UserList[0].Passwords[0].getStr());
+ setPassword(aRec.UserList[0].Passwords[0]);
if (aRec.UserList[0].Passwords.getLength() > 1)
{
if (rRequest.HasRealm)
{
if (xSupplyAuthentication->canSetRealm())
xSupplyAuthentication->
- setRealm(aRec.UserList[0].Passwords[1].
- getStr());
+ setRealm(aRec.UserList[0].Passwords[1]);
}
else if (xSupplyAuthentication->canSetAccount())
xSupplyAuthentication->
- setAccount(aRec.UserList[0].Passwords[1].
- getStr());
+ setAccount(aRec.UserList[0].Passwords[1]);
}
if ( xSupplyAuthentication2.is() && bCanUseSystemCredentials )