From 88b9e7f391910e534b0faf7378ec4c6929d4d44a Mon Sep 17 00:00:00 2001 From: Rohit Deshmukh Date: Wed, 27 Nov 2013 13:53:12 +0530 Subject: fdo#71786 : Implemented Glossary folder 1. Glosary folder is imported as Intrograb and exported. 2. Added unit test case Reviewed on: https://gerrit.libreoffice.org/6825 Conflicts: sw/qa/extras/ooxmlexport/ooxmlexport.cxx writerfilter/source/filter/ImportFilter.cxx Change-Id: Ifd51a75a65e030d44d30e02cd7ab51fb088186b3 --- package/source/xstor/owriteablestream.cxx | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'package/source') diff --git a/package/source/xstor/owriteablestream.cxx b/package/source/xstor/owriteablestream.cxx index 9d987a5fbe7b..bc7086ef5564 100644 --- a/package/source/xstor/owriteablestream.cxx +++ b/package/source/xstor/owriteablestream.cxx @@ -3104,6 +3104,10 @@ void SAL_CALL OWriteStream::setPropertyValue( const OUString& aPropertyName, con else if ( m_pData->m_nStorageType == embed::StorageFormats::PACKAGE && ( aPropertyName == "IsEncrypted" || aPropertyName == "Encrypted" ) ) throw beans::PropertyVetoException(); // TODO + else if ( aPropertyName == "RelId" ) + { + aValue >>= m_pImpl->m_nRelId; + } else throw beans::UnknownPropertyException(); // TODO -- cgit