summaryrefslogtreecommitdiffstats
path: root/xmloff/source/text/txtprhdl.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmloff/source/text/txtprhdl.cxx')
-rwxr-xr-xxmloff/source/text/txtprhdl.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/xmloff/source/text/txtprhdl.cxx b/xmloff/source/text/txtprhdl.cxx
index 219c421b4fea..a430339fcadd 100755
--- a/xmloff/source/text/txtprhdl.cxx
+++ b/xmloff/source/text/txtprhdl.cxx
@@ -1031,7 +1031,8 @@ sal_Bool XMLTextCombineCharPropHdl_Impl::exportXML(
{
rValue >>= rStrExpValue;
- return sal_True;
+ // #i114107# attribute of type "character": export only if length is 1
+ return (1 == rStrExpValue.getLength()) ? sal_True : sal_False;
}
XMLTextCombineCharPropHdl_Impl::~XMLTextCombineCharPropHdl_Impl()