From 62aaaad156ef0daccd2680161ef8b9b99d8a7bc0 Mon Sep 17 00:00:00 2001 From: Ilhan Yesil Date: Thu, 23 May 2019 17:52:04 +0200 Subject: tdf#125103 Writer: input fields will be exported to docx Changed the solution https://gerrit.libreoffice.org/#/c/70786/ of Vasily sligthly, so MS Office can recognize fields still as fields. Change-Id: Id45330a96dfe002685c6ef3dc62e408c5f9f46c4 Reviewed-on: https://gerrit.libreoffice.org/72868 Tested-by: Jenkins Reviewed-by: Vasily Melenchuk --- sw/source/filter/ww8/docxexport.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sw/source/filter/ww8/docxexport.cxx') diff --git a/sw/source/filter/ww8/docxexport.cxx b/sw/source/filter/ww8/docxexport.cxx index 75a28e020a91..f0db6407c55d 100644 --- a/sw/source/filter/ww8/docxexport.cxx +++ b/sw/source/filter/ww8/docxexport.cxx @@ -378,8 +378,8 @@ void DocxExport::DoComboBox(const OUString& rName, void DocxExport::DoFormText(const SwInputField* pField) { assert(pField); - const OUString sStr = FieldString(ww::eFORMTEXT); - OutputField(pField, ww::eFORMTEXT, sStr); + const OUString sStr = FieldString(ww::eFILLIN) + "\"" + pField->GetPar2() + "\""; + OutputField(pField, ww::eFILLIN, sStr); } OString DocxExport::OutputChart( uno::Reference< frame::XModel > const & xModel, sal_Int32 nCount, ::sax_fastparser::FSHelperPtr const & m_pSerializer ) -- cgit