diff options
author | Tor Lillqvist <tml@collabora.com> | 2016-12-21 19:49:10 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2016-12-21 21:24:09 +0200 |
commit | e1ce7bad62f07faf8f21adac6c3848d142f61953 (patch) | |
tree | 309bd2c4b5a5e03abad2ede2cbfe37910d624bdc /offapi | |
parent | 0f00751af858da91d379208b8b679002a180ff93 (diff) |
[API CHANGE] createSecurityContext() was always called with an empty string
So drop the parameter then and propagate fallout in the Windows
implementation in xmlsecurity. The NSS implementation already ignored
the parameter completely.
This interface is not 'published' and the parameter was even marked as
'reserved for internal use' so I doubt any external code has used it.
Change-Id: I5915b941b79cfddadc8137c32ed07c20c9ccaa37
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/xml/crypto/XSEInitializer.idl | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/offapi/com/sun/star/xml/crypto/XSEInitializer.idl b/offapi/com/sun/star/xml/crypto/XSEInitializer.idl index fc8ce622b939..2c1beebb1e99 100644 --- a/offapi/com/sun/star/xml/crypto/XSEInitializer.idl +++ b/offapi/com/sun/star/xml/crypto/XSEInitializer.idl @@ -35,12 +35,9 @@ interface XSEInitializer : com::sun::star::uno::XInterface /** Creates a security context. - @param aString - reserved for internal use. - @return the security context created */ - ::com::sun::star::xml::crypto::XXMLSecurityContext createSecurityContext( [in] string aString ); + ::com::sun::star::xml::crypto::XXMLSecurityContext createSecurityContext(); /** * Frees a security context. |