diff options
author | Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> | 2017-02-01 16:25:56 +0100 |
---|---|---|
committer | Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> | 2017-02-02 17:29:29 +0000 |
commit | 436035a2b2d7c3754ca4f213af2ddd8be9707c29 (patch) | |
tree | 03f3a41d9f53be4669c14a36400c122860ac656d /offapi/com/sun/star | |
parent | 90c4e14a06d48b369a5bbb93054bb6d51f81c347 (diff) |
Fix some typos
Change-Id: Ide3786aad5589e2d430a4e3890d51117b145e51d
Reviewed-on: https://gerrit.libreoffice.org/33842
Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Tested-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Diffstat (limited to 'offapi/com/sun/star')
-rw-r--r-- | offapi/com/sun/star/security/XDocumentDigitalSignatures.idl | 7 | ||||
-rw-r--r-- | offapi/com/sun/star/xml/crypto/XSecurityEnvironment.idl | 6 |
2 files changed, 6 insertions, 7 deletions
diff --git a/offapi/com/sun/star/security/XDocumentDigitalSignatures.idl b/offapi/com/sun/star/security/XDocumentDigitalSignatures.idl index 5ee5b9e44106..e725624e9e19 100644 --- a/offapi/com/sun/star/security/XDocumentDigitalSignatures.idl +++ b/offapi/com/sun/star/security/XDocumentDigitalSignatures.idl @@ -119,18 +119,17 @@ interface XDocumentDigitalSignatures : com::sun::star::uno::XInterface void showCertificate( [in] com::sun::star::security::XCertificate Certificate ); - /** manages trusted sources (Authors and paths ) + /** manages trusted sources (Authors and paths ) */ - void manageTrustedSources(); boolean isAuthorTrusted( [in] com::sun::star::security::XCertificate Author ); boolean isLocationTrusted( [in] string Location ); - // These method should raise confirmation dialog, so it can not used from bad macros... + // These methods should raise a confirmation dialog, so they can not be misused from bad macros. void addAuthorToTrustedSources( [in] com::sun::star::security::XCertificate Author ); void addLocationToTrustedSources( [in] string Location ); - /** This method shows CertificateChooser dialog, used by document and PDF signing + /** This method shows the CertificateChooser dialog, used by document and PDF signing @since LibreOffice 5.3 */ diff --git a/offapi/com/sun/star/xml/crypto/XSecurityEnvironment.idl b/offapi/com/sun/star/xml/crypto/XSecurityEnvironment.idl index cfc6948d54e4..7227a4e9ad4d 100644 --- a/offapi/com/sun/star/xml/crypto/XSecurityEnvironment.idl +++ b/offapi/com/sun/star/xml/crypto/XSecurityEnvironment.idl @@ -35,7 +35,7 @@ module com { module sun { module star { module xml { module crypto { interface XSecurityEnvironment : com::sun::star::uno::XInterface { /** - * Get personal certificate from the environment + * Get personal certificates from the environment */ sequence< com::sun::star::security::XCertificate > getPersonalCertificates() raises( com::sun::star::uno::SecurityException ) ; @@ -45,7 +45,7 @@ interface XSecurityEnvironment : com::sun::star::uno::XInterface com::sun::star::security::XCertificate getCertificate( [in] string issuerName, [in] sequence< byte > serialNumber ) raises( com::sun::star::uno::SecurityException ) ; /** - * build certificate path from a certain certificate + * Build certificate path from a certain certificate */ sequence< com::sun::star::security::XCertificate > buildCertificatePath( [in] com::sun::star::security::XCertificate beginCert ) raises( com::sun::star::uno::SecurityException ) ; @@ -95,7 +95,7 @@ interface XSecurityEnvironment : com::sun::star::uno::XInterface long getCertificateCharacters( [in] com::sun::star::security::XCertificate xCertificate ) raises( com::sun::star::uno::SecurityException ) ; /** - * Get the Environment detail infos + * Get the Environment detail information */ string getSecurityEnvironmentInformation ( ); |