diff options
author | Laurent Godard <lgodard.libre@laposte.net> | 2015-02-24 09:41:44 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2015-02-25 00:24:18 +0000 |
commit | d60157196f34a4b08f64aa869fb104998041b688 (patch) | |
tree | fe6addf9024ee7e649fb23f51b440479d21ac810 /offapi | |
parent | 984445841073f5bf99f0b7f87d1f8f33f07de5e5 (diff) |
calc : add UNO properties for "Record changes"
with unit testing
Change-Id: I2a0e09f699c8489f61453b4144dd6181bd9b47fd
Reviewed-on: https://gerrit.libreoffice.org/14603
Reviewed-by: Eike Rathke <erack@redhat.com>
Tested-by: Eike Rathke <erack@redhat.com>
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/sheet/SpreadsheetDocumentSettings.idl | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/offapi/com/sun/star/sheet/SpreadsheetDocumentSettings.idl b/offapi/com/sun/star/sheet/SpreadsheetDocumentSettings.idl index 8b0d301987e0..50c67dfb649a 100644 --- a/offapi/com/sun/star/sheet/SpreadsheetDocumentSettings.idl +++ b/offapi/com/sun/star/sheet/SpreadsheetDocumentSettings.idl @@ -193,6 +193,21 @@ published service SpreadsheetDocumentSettings */ [readonly, optional, property] com::sun::star::awt::XDevice ReferenceDevice; + /** specifies whether changes record is enabled. + + <p>No modification applied if the record changes protection is activated + information given by SpreadsheetDocumentSettings::IsRecordChangesProtected</p> + + @since LibreOffice 4.5 + */ + [optional, property] boolean RecordChanges; + + /** specifies whether changes record is protected. + + @since LibreOffice 4.5 + */ + [readonly,optional, property] boolean IsRecordChangesProtected; + }; |