diff options
Diffstat (limited to 'comphelper/inc/comphelper/docpasswordhelper.hxx')
-rw-r--r-- | comphelper/inc/comphelper/docpasswordhelper.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/comphelper/inc/comphelper/docpasswordhelper.hxx b/comphelper/inc/comphelper/docpasswordhelper.hxx index 989329298ca2..d434ee694625 100644 --- a/comphelper/inc/comphelper/docpasswordhelper.hxx +++ b/comphelper/inc/comphelper/docpasswordhelper.hxx @@ -58,7 +58,7 @@ class COMPHELPER_DLLPUBLIC IDocPasswordVerifier public: virtual ~IDocPasswordVerifier(); - /** Will be called everytime a password needs to be verified. + /** Will be called every time a password needs to be verified. @param rPassword The password to be verified @@ -74,12 +74,12 @@ public: - DocPasswordVerifierResult_WRONG_PASSWORD, if the password is wrong. The user may be asked again for a new password. - DocPasswordVerifierResult_ABORT, if an unrecoverable error - occured while password verification. The password request loop + occurred while password verification. The password request loop will be aborted. */ virtual DocPasswordVerifierResult verifyPassword( const ::rtl::OUString& rPassword, ::com::sun::star::uno::Sequence< ::com::sun::star::beans::NamedValue >& o_rEncryptionData ) = 0; - /** Will be called everytime an encryption data needs to be verified. + /** Will be called every time an encryption data needs to be verified. @param rEncryptionData The data will be validated @@ -90,7 +90,7 @@ public: - DocPasswordVerifierResult_WRONG_PASSWORD, if the encryption data is wrong. - DocPasswordVerifierResult_ABORT, if an unrecoverable error - occured while data verification. The password request loop + occurred while data verification. The password request loop will be aborted. */ virtual DocPasswordVerifierResult verifyEncryptionData( const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::NamedValue >& o_rEncryptionData ) = 0; |