diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2015-09-14 02:47:58 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2015-09-14 06:14:38 +0200 |
commit | a5d761723f6aca26c6c05182bc5ba184576e29a1 (patch) | |
tree | 9516917b8becf6cdcac8eb0ed1da0212a2f41edf /oox | |
parent | f435b78866f8ae7959c0cbf1484e6bfca8084eba (diff) |
move a little bit closer to the export from MSO
Change-Id: I378d96f65fbeb2c529eae6a9c90ef7c0ecccc97d
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/ole/vbaexport.cxx | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/oox/source/ole/vbaexport.cxx b/oox/source/ole/vbaexport.cxx index 064a1e40ee4a..703ddfdaa3f8 100644 --- a/oox/source/ole/vbaexport.cxx +++ b/oox/source/ole/vbaexport.cxx @@ -760,8 +760,15 @@ void exportPROJECTStream(SvStream& rStrm, css::uno::Reference<css::container::XN // section 2.3.1.18 HostExtenders exportString(rStrm, "[Host Extender Info]\r\n" - "&H00000001={3832D640-CF90-11CF-8E43-00A0C911005A};VBE;&H00000000\r\n" + "&H00000001={3832D640-CF90-11CF-8E43-00A0C911005A};VBE;&H00000000\r\n\r\n" ); + + // section 2.3.1.19 ProjectWorkspace + exportString(rStrm, "[Workspace]\r\n"); + for (sal_Int32 i = 0; i < n; ++i) + { + exportString(rStrm, aElementNames[i] + "=0, 0, 0, 0, C\r\n"); + } } // section 2.3.3.1 NAMEMAP |