Re: [Libreoffice] [PATCH] Fix field values in export to docx

2011-07-29 Thread Lubos Lunak
On Friday 29 of July 2011, Caolán McNamara wrote: > On Thu, 2011-07-28 at 17:14 +0200, Lubos Lunak wrote: > > > -// Find another way for hyperlinks > > > -RunText( rInfos.pField->GetFieldName() ); > > > +String sExpand( rInfos.pField->ExpandField( true ) ); > > > +sE

Re: [Libreoffice] [PATCH] Fix field values in export to docx

2011-07-29 Thread Caolán McNamara
On Thu, 2011-07-28 at 17:14 +0200, Lubos Lunak wrote: > > -// Find another way for hyperlinks > > -RunText( rInfos.pField->GetFieldName() ); > > +String sExpand( rInfos.pField->ExpandField( true ) ); > > +sExpand.SearchAndReplaceAll( 0x0A, 0x0B ); > > This line loo

Re: [Libreoffice] [PATCH] Fix field values in export to docx

2011-07-28 Thread Lubos Lunak
On Friday 22 of July 2011, Troy Rollo wrote: > Prior to this patch, fields were being exported to docx file with the > field value being the name of the field. This patch changes it to > export the field value as the field value. > --- > sw/source/filter/ww8/docxattributeoutput.cxx |6 -- >

Re: [Libreoffice] [PATCH] Fix field values in export to docx

2011-07-27 Thread Kohei Yoshida
On Sat, 2011-07-23 at 00:18 +1000, Troy Rollo wrote: > Prior to this patch, fields were being exported to docx file with the > field value being the name of the field. This patch changes it to > export the field value as the field value. Ditto with this one. I'll CC Cedric and Lubos for review.

[Libreoffice] [PATCH] Fix field values in export to docx

2011-07-22 Thread Troy Rollo
Prior to this patch, fields were being exported to docx file with the field value being the name of the field. This patch changes it to export the field value as the field value. --- sw/source/filter/ww8/docxattributeoutput.cxx |6 -- 1 files changed, 4 insertions(+), 2 deletions(-) diff