diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2017-04-27 22:22:33 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-05-29 15:37:08 +0200 |
commit | 795d56dfd55a78a240cef79c822ba958c4f18006 (patch) | |
tree | f1cb255ad87f0368d59705ba286052e6e63d7487 /offapi | |
parent | 4946e3b33d8d217f4f5be2af8a54b9a89ef1a732 (diff) |
[API-CHANGE] Add persistent (in addition to persistant)
+ keep "persistant" for compatibility reasons
but put it as deprecated
Change-Id: I7ef8efb9f376eadfdac876d142840aab5a0b4416
Reviewed-on: https://gerrit.libreoffice.org/37042
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Michael Meeks <michael.meeks@collabora.com>
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/datatransfer/clipboard/RenderingCapabilities.idl | 3 | ||||
-rw-r--r-- | offapi/com/sun/star/datatransfer/clipboard/XSystemClipboard.idl | 2 | ||||
-rw-r--r-- | offapi/type_reference/offapi.idl | 3 |
3 files changed, 5 insertions, 3 deletions
diff --git a/offapi/com/sun/star/datatransfer/clipboard/RenderingCapabilities.idl b/offapi/com/sun/star/datatransfer/clipboard/RenderingCapabilities.idl index 6b0cdc96c230..f46bd2ff5d31 100644 --- a/offapi/com/sun/star/datatransfer/clipboard/RenderingCapabilities.idl +++ b/offapi/com/sun/star/datatransfer/clipboard/RenderingCapabilities.idl @@ -37,7 +37,8 @@ published constants RenderingCapabilities /** The implementation is able to store the data persistent in the system so that it does not get lost when the source application no longer exist. */ - const byte Persistant = 2; + /** @deprecated */ const byte Persistant = 2; + const byte Persistent = 2; }; diff --git a/offapi/com/sun/star/datatransfer/clipboard/XSystemClipboard.idl b/offapi/com/sun/star/datatransfer/clipboard/XSystemClipboard.idl index 1cb96db1ece8..32f8bf39db4e 100644 --- a/offapi/com/sun/star/datatransfer/clipboard/XSystemClipboard.idl +++ b/offapi/com/sun/star/datatransfer/clipboard/XSystemClipboard.idl @@ -46,7 +46,7 @@ published interface XSystemClipboard /** Provides the ability to render the complete clipboard content. This interface is only available if the method com::sun::star::datatransfer::clipboard::XClipboardEx::getRenderingCapabilities() - returns Persistant + returns Persistent */ [optional] interface XFlushableClipboard; diff --git a/offapi/type_reference/offapi.idl b/offapi/type_reference/offapi.idl index e796d59192e2..14f39fac820d 100644 --- a/offapi/type_reference/offapi.idl +++ b/offapi/type_reference/offapi.idl @@ -4312,7 +4312,8 @@ module com { }; published constants RenderingCapabilities { const byte Delayed = 1; - const byte Persistant = 2; + /** @deprecated */ const byte Persistant = 2; + const byte Persistent = 2; }; published interface XFlushableClipboard { interface ::com::sun::star::uno::XInterface; |