Tag: cws_src680_oj14 User: oj Date: 2007-06-04 17:56:57+0000 Log: RESYNC: (1.14-1.15); FILE MERGED
File Changes: Directory: /dba/dbaccess/source/filter/xml/ =========================================== File [changed]: xmlExport.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/filter/xml/xmlExport.cxx?r1=1.8.4.3&r2=1.8.4.4 Delta lines: +9 -3 ------------------- --- xmlExport.cxx 2006-11-07 09:00:37+0000 1.8.4.3 +++ xmlExport.cxx 2007-06-04 17:56:52+0000 1.8.4.4 @@ -1067,9 +1067,15 @@ sal_Int32 nLength = aProps.getLength(); try { + Any aValue = xProp->getPropertyValue(PROPERTY_LAYOUTINFORMATION); + Sequence< PropertyValue > aPropValues; + aValue >>= aPropValues; + if ( aPropValues.getLength() ) + { aProps.realloc(nLength + 1); aProps[nLength].Name = ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("layout-settings")); - aProps[nLength].Value = xProp->getPropertyValue(PROPERTY_LAYOUTINFORMATION); + aProps[nLength].Value = aValue; + } } catch(Exception) { --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
