diff options
author | Cao Cuong Ngo <cao.cuong.ngo@gmail.com> | 2013-06-18 14:00:48 +0200 |
---|---|---|
committer | Cédric Bosdonnat <cedric.bosdonnat.ooo@free.fr> | 2013-09-02 13:51:48 +0200 |
commit | 91d9430d68434cd267b481f73d4bc522a902eeda (patch) | |
tree | acff987fef92240ffd063a815048ded9c21ffb2f /offapi | |
parent | 7af023246b59ca73a42f3f5164d6f0321f424c0f (diff) |
CMIS properties dialog
Rename CmisPropertyValues to CmisProperty
Change-Id: I7360e6b55406c1abe381c8d915be41d972498167
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/UnoApi_offapi.mk | 2 | ||||
-rw-r--r-- | offapi/com/sun/star/document/CmisProperty.idl (renamed from offapi/com/sun/star/document/CmisPropertyValue.idl) | 8 | ||||
-rw-r--r-- | offapi/com/sun/star/document/XCmisDocument.idl | 4 |
3 files changed, 6 insertions, 8 deletions
diff --git a/offapi/UnoApi_offapi.mk b/offapi/UnoApi_offapi.mk index 00d29b9dc722..5d1a6d93f015 100644 --- a/offapi/UnoApi_offapi.mk +++ b/offapi/UnoApi_offapi.mk @@ -2171,7 +2171,7 @@ $(eval $(call gb_UnoApi_add_idlfiles,offapi,offapi/com/sun/star/document,\ AmbigousFilterRequest \ BrokenPackageRequest \ ChangedByOthersRequest \ - CmisPropertyValue \ + CmisProperty \ CorruptedFilterConfigurationException \ DocumentEvent \ EmptyUndoStackException \ diff --git a/offapi/com/sun/star/document/CmisPropertyValue.idl b/offapi/com/sun/star/document/CmisProperty.idl index f60bb6d68899..f6009a0f3685 100644 --- a/offapi/com/sun/star/document/CmisPropertyValue.idl +++ b/offapi/com/sun/star/document/CmisProperty.idl @@ -16,16 +16,14 @@ * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#ifndef __com_sun_star_document_CmisPropertyValue_idl__ -#define __com_sun_star_document_CmisPropertyValue_idl__ - -#include <com/sun/star/beans/PropertyValue.idl> +#ifndef __com_sun_star_document_CmisProperty_idl__ +#define __com_sun_star_document_CmisProperty_idl__ module com { module sun { module star { module document { /** specifies a CMIS property value. */ -struct CmisPropertyValue +struct CmisProperty { /** unique ID of the Cmis property */ diff --git a/offapi/com/sun/star/document/XCmisDocument.idl b/offapi/com/sun/star/document/XCmisDocument.idl index 66e478a77651..51bcf508649f 100644 --- a/offapi/com/sun/star/document/XCmisDocument.idl +++ b/offapi/com/sun/star/document/XCmisDocument.idl @@ -9,7 +9,7 @@ #ifndef __com_sun_star_document_XCmisDocument_idl__ #define __com_sun_star_document_XCmisDocument_idl__ -#include <com/sun/star/document/CmisPropertyValue.idl> +#include <com/sun/star/document/CmisProperty.idl> #include <com/sun/star/uno/XInterface.idl> module com { module sun { module star { module document { @@ -46,7 +46,7 @@ interface XCmisDocument : com::sun::star::uno::XInterface /** Contains the properties values named after their CMIS ID. */ - [attribute] sequence <com::sun::star::document::CmisPropertyValue> CmisPropertiesValues; + [attribute] sequence <com::sun::star::document::CmisProperty> CmisProperties; }; }; }; }; }; |