diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-11-12 18:12:26 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-11-14 11:13:23 +0100 |
commit | 8061c8c70b7ffcd8f472d2f5b909911f2095fec7 (patch) | |
tree | da1cee91243467e3d88ad763d7786c147eb93a7d /oox | |
parent | 18be6f161de20f3b0e05d0dd494242eda16ee5c4 (diff) |
Make requestAndVerifyDocPassword var with MediaDescriptor a mem fn of latter
Change-Id: I645d554c7ce592d93ca0696fa7e6068ce40c9058
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/core/filterdetect.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/oox/source/core/filterdetect.cxx b/oox/source/core/filterdetect.cxx index ffa44a39c56f..2dbb73cd4c43 100644 --- a/oox/source/core/filterdetect.cxx +++ b/oox/source/core/filterdetect.cxx @@ -343,8 +343,8 @@ Reference< XInputStream > FilterDetect::extractUnencryptedPackage( MediaDescript user has cancelled the password input dialog. */ PasswordVerifier aVerifier( aDecryptor ); Sequence<NamedValue> aEncryptionData; - aEncryptionData = comphelper::DocPasswordHelper::requestAndVerifyDocPassword( - aVerifier, rMediaDescriptor, + aEncryptionData = rMediaDescriptor.requestAndVerifyDocPassword( + aVerifier, comphelper::DocPasswordRequestType_MS, &aDefaultPasswords ); |