diff options
author | Andras Timar <andras.timar@collabora.com> | 2015-06-11 18:41:18 +0200 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2015-06-11 20:02:34 +0000 |
commit | 5956cbcbd4b59186d23a34f9d56892266482f251 (patch) | |
tree | a61660aacd04b70ced8d759dc74002ecd62e16bf | |
parent | 6bf39b2f4ea4e880d8414b04269405e6b48efe23 (diff) |
tdf#90926 remove footnote mark from cross reference
Change-Id: I0354bca230395d8061bb6d9ce9f9b7a6229b73a7
Reviewed-on: https://gerrit.libreoffice.org/16234
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Andras Timar <andras.timar@collabora.com>
-rw-r--r-- | sw/source/core/fields/reffld.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/fields/reffld.cxx b/sw/source/core/fields/reffld.cxx index f520aea67c11..d0cc2072bd77 100644 --- a/sw/source/core/fields/reffld.cxx +++ b/sw/source/core/fields/reffld.cxx @@ -390,7 +390,7 @@ void SwGetRefField::UpdateField( const SwTextField* pFieldTextAttr ) if( nStart != nEnd ) // a section? { - sText = pTextNd->GetExpandText( nStart, nEnd - nStart ); + sText = pTextNd->GetExpandText( nStart, nEnd - nStart, false, false, false, false ); // remove all special characters (replace them with blanks) if( !sText.isEmpty() ) |