diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/sfx2/dinfdlg.hxx | 8 | ||||
-rw-r--r-- | include/sfx2/sfxbasemodel.hxx | 10 |
2 files changed, 9 insertions, 9 deletions
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 <com/sun/star/util/DateTime.hpp> #include <com/sun/star/util/Duration.hpp> -#include <com/sun/star/document/CmisPropertyValue.hpp> +#include <com/sun/star/document/CmisProperty.hpp> #include <svl/stritem.hxx> #include <svl/zforlist.hxx> @@ -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 <com/sun/star/frame/XStorable2.hpp> #include <com/sun/star/frame/XLoadable.hpp> #include <com/sun/star/beans/PropertyValue.hpp> -#include <com/sun/star/document/CmisPropertyValue.hpp> +#include <com/sun/star/document/CmisProperty.hpp> #include <com/sun/star/lang/EventObject.hpp> #include <com/sun/star/datatransfer/XTransferable.hpp> #include <com/sun/star/script/provider/XScriptProviderSupplier.hpp> @@ -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 ); |