diff options
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/mathml/importutils.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/oox/source/mathml/importutils.cxx b/oox/source/mathml/importutils.cxx index ed97abd3a0ad..7333f27dc352 100644 --- a/oox/source/mathml/importutils.cxx +++ b/oox/source/mathml/importutils.cxx @@ -141,10 +141,9 @@ sal_Unicode XmlStream::AttributeList::attribute( int token, sal_Unicode def ) co return def; } -XmlStream::Tag::Tag( int t, const uno::Reference< xml::sax::XFastAttributeList >& a, const OUString& txt ) +XmlStream::Tag::Tag( int t, const uno::Reference< xml::sax::XFastAttributeList >& a ) : token( t ) , attributes( AttributeListBuilder( a )) -, text( txt ) { } |