summaryrefslogtreecommitdiff
path: root/xmloff/source
diff options
context:
space:
mode:
authorMichael Brauer <mib@openoffice.org>2001-11-07 14:10:08 +0000
committerMichael Brauer <mib@openoffice.org>2001-11-07 14:10:08 +0000
commitf90bf2a1a9acd019594205a1d1264dd052cf831c (patch)
tree3506992b4c449da2ce9bdc4445d5a785705abc77 /xmloff/source
parent9b6b62c20a1d9c01940bae86d89c7fa1951f3ffc (diff)
#94424#: Export text styles around fields
Diffstat (limited to 'xmloff/source')
-rw-r--r--xmloff/source/text/txtflde.cxx13
1 files changed, 6 insertions, 7 deletions
diff --git a/xmloff/source/text/txtflde.cxx b/xmloff/source/text/txtflde.cxx
index 96fb2534d2d9..d5a59cb477d2 100644
--- a/xmloff/source/text/txtflde.cxx
+++ b/xmloff/source/text/txtflde.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: txtflde.cxx,v $
*
- * $Revision: 1.37 $
+ * $Revision: 1.38 $
*
- * last change: $Author: dvo $ $Date: 2001-10-30 16:02:11 $
+ * last change: $Author: mib $ $Date: 2001-11-07 15:10:08 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -1034,8 +1034,8 @@ void XMLTextFieldExport::ExportField(const Reference<XTextField> & rTextField )
// except for combined characters field)
if (FIELD_ID_COMBINED_CHARACTERS != nToken)
{
- OUString sStyle = GetExport().GetTextParagraphExport()->Find(
- XML_STYLE_FAMILY_TEXT_TEXT, xRangePropSet, sEmpty);
+ sal_Bool bDummy;
+ OUString sStyle = GetExport().GetTextParagraphExport()->FindTextStyleAndHyperlink( xRangePropSet, bDummy );
if( sStyle.getLength() )
{
// export <text:span> element
@@ -1700,10 +1700,9 @@ void XMLTextFieldExport::ExportFieldHelper(
{
// get style name for current style + combine letters and export a span
const XMLPropertyState *aStates[] = { pCombinedCharactersPropertyState, 0 };
+ sal_Bool bDummy;
ProcessString(XML_STYLE_NAME,
- GetExport().GetTextParagraphExport()->Find(
- XML_STYLE_FAMILY_TEXT_TEXT, rRangePropSet,
- sEmpty, aStates) );
+ GetExport().GetTextParagraphExport()->FindTextStyleAndHyperlink( rRangePropSet, bDummy, aStates) );
ExportElement(XML_SPAN, sPresentation);
break;
}