summaryrefslogtreecommitdiff
path: root/offapi/com
diff options
context:
space:
mode:
authorCao Cuong Ngo <cao.cuong.ngo@gmail.com>2013-06-18 14:00:48 +0200
committerCédric Bosdonnat <cedric.bosdonnat.ooo@free.fr>2013-09-02 13:51:48 +0200
commit91d9430d68434cd267b481f73d4bc522a902eeda (patch)
treeacff987fef92240ffd063a815048ded9c21ffb2f /offapi/com
parent7af023246b59ca73a42f3f5164d6f0321f424c0f (diff)
CMIS properties dialog
Rename CmisPropertyValues to CmisProperty Change-Id: I7360e6b55406c1abe381c8d915be41d972498167
Diffstat (limited to 'offapi/com')
-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.idl4
2 files changed, 5 insertions, 7 deletions
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;
};
}; }; }; };