diff options
author | Carsten Driesner <cd@openoffice.org> | 2010-08-23 13:43:42 +0200 |
---|---|---|
committer | Carsten Driesner <cd@openoffice.org> | 2010-08-23 13:43:42 +0200 |
commit | d1102d84dad39c9b9009c59fa27e5d3bf30a4804 (patch) | |
tree | ff3290e58cf68d635db2376089dd90122d967d7d /uui | |
parent | be84c56ceffdf5e1bdade35611b15f8e76379818 (diff) |
fwk154: #i114014# Use correct compare statement
Diffstat (limited to 'uui')
-rw-r--r-- | uui/source/iahndl-authentication.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/uui/source/iahndl-authentication.cxx b/uui/source/iahndl-authentication.cxx index 1e9a4e6837d3..95c2b45749ac 100644 --- a/uui/source/iahndl-authentication.cxx +++ b/uui/source/iahndl-authentication.cxx @@ -270,7 +270,7 @@ handleAuthenticationRequest_( aInfo.SetCanRememberPassword( ePreferredRememberMode != eAlternateRememberMode); aInfo.SetIsRememberPassword( - ePreferredRememberMode != eDefaultRememberMode); + ePreferredRememberMode == eDefaultRememberMode); aInfo.SetIsRememberPersistent( ePreferredRememberMode == ucb::RememberAuthentication_PERSISTENT); |