summaryrefslogtreecommitdiff
path: root/uui
diff options
context:
space:
mode:
authorPhilipp Lohmann [pl] <Philipp.Lohmann@Sun.COM>2010-04-28 14:22:16 +0200
committerPhilipp Lohmann [pl] <Philipp.Lohmann@Sun.COM>2010-04-28 14:22:16 +0200
commitececcc290b431ca40b785afbffa1f3c2396a1bbb (patch)
tree11c4e3c681d18280c5882f5eaad6630f5e04bc0c /uui
parenta001605a190749900d3e09aa864ce56925ff848e (diff)
pdfextfix03: #i110871# PasswordRequest should still be supported for backwards compatibility
Diffstat (limited to 'uui')
-rw-r--r--uui/source/iahndl-authentication.cxx12
1 files changed, 12 insertions, 0 deletions
diff --git a/uui/source/iahndl-authentication.cxx b/uui/source/iahndl-authentication.cxx
index f31397f1ef92..db6437322e0a 100644
--- a/uui/source/iahndl-authentication.cxx
+++ b/uui/source/iahndl-authentication.cxx
@@ -581,5 +581,17 @@ UUIInteractionHelper::handlePasswordRequest(
true /* bool bMSCryptoMode */);
return true;
}
+
+ task::PasswordRequest aPasswordRequest;
+ if( aAnyRequest >>= aPasswordRequest )
+ {
+ handlePasswordRequest_(getParentProperty(),
+ aPasswordRequest.Mode,
+ rRequest->getContinuations(),
+ rtl::OUString(),
+ false /* bool bMSCryptoMode */);
+ return true;
+ }
+
return false;
}