From 91d9430d68434cd267b481f73d4bc522a902eeda Mon Sep 17 00:00:00 2001 From: Cao Cuong Ngo Date: Tue, 18 Jun 2013 14:00:48 +0200 Subject: CMIS properties dialog Rename CmisPropertyValues to CmisProperty Change-Id: I7360e6b55406c1abe381c8d915be41d972498167 --- include/sfx2/dinfdlg.hxx | 8 ++++---- include/sfx2/sfxbasemodel.hxx | 10 +++++----- 2 files changed, 9 insertions(+), 9 deletions(-) (limited to 'include') diff --git a/include/sfx2/dinfdlg.hxx b/include/sfx2/dinfdlg.hxx index 4d82f419b1fe..6f0d57a2ede9 100644 --- a/include/sfx2/dinfdlg.hxx +++ b/include/sfx2/dinfdlg.hxx @@ -26,7 +26,7 @@ #include #include -#include +#include #include #include @@ -90,7 +90,7 @@ public: const ::com::sun::star::uno::Reference< ::com::sun::star::document::XDocumentProperties> & i_xDocProps, const ::com::sun::star::uno::Sequence< - ::com::sun::star::document::CmisPropertyValue> & i_cmisProps, + ::com::sun::star::document::CmisProperty> & i_cmisProps, sal_Bool bUseUserData ); SfxDocumentInfoItem( const SfxDocumentInfoItem& ); virtual ~SfxDocumentInfoItem(); @@ -640,7 +640,7 @@ public: void ClearAllLines(); void DoScroll( sal_Int32 nNewPos ); - ::com::sun::star::uno::Sequence< ::com::sun::star::document::CmisPropertyValue > + ::com::sun::star::uno::Sequence< ::com::sun::star::document::CmisProperty > GetCmisProperties() const; void updateLineWidth(); }; @@ -668,7 +668,7 @@ public: inline bool AreAllLinesValid() const { return m_pPropertiesWin->AreAllLinesValid(); } inline void ClearAllLines() { m_pPropertiesWin->ClearAllLines(); } - inline ::com::sun::star::uno::Sequence< ::com::sun::star::document::CmisPropertyValue > + inline ::com::sun::star::uno::Sequence< ::com::sun::star::document::CmisProperty > GetCmisProperties() const { return m_pPropertiesWin->GetCmisProperties(); } void Init(VclBuilderContainer& rParent); diff --git a/include/sfx2/sfxbasemodel.hxx b/include/sfx2/sfxbasemodel.hxx index 37bef5205b7b..d36eeb9ab0ae 100644 --- a/include/sfx2/sfxbasemodel.hxx +++ b/include/sfx2/sfxbasemodel.hxx @@ -63,7 +63,7 @@ #include #include #include -#include +#include #include #include #include @@ -1308,12 +1308,12 @@ public: // XCmisDocument - virtual css::uno::Sequence< css::document::CmisPropertyValue > - SAL_CALL getCmisPropertiesValues() + virtual css::uno::Sequence< css::document::CmisProperty > + SAL_CALL getCmisProperties() throw (css::uno::RuntimeException); - virtual void SAL_CALL setCmisPropertiesValues( + virtual void SAL_CALL setCmisProperties( const css::uno::Sequence< - css::document::CmisPropertyValue >& _cmispropertiesvalues ) + css::document::CmisProperty >& _cmisproperties ) throw (css::uno::RuntimeException); virtual void SAL_CALL checkOut( ) throw ( css::uno::RuntimeException ); -- cgit