summaryrefslogtreecommitdiff
path: root/include/sax
diff options
context:
space:
mode:
Diffstat (limited to 'include/sax')
-rw-r--r--include/sax/fastattribs.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/sax/fastattribs.hxx b/include/sax/fastattribs.hxx
index 029f3a12f780..a0f552226fe6 100644
--- a/include/sax/fastattribs.hxx
+++ b/include/sax/fastattribs.hxx
@@ -36,9 +36,9 @@ namespace sax_fastparser
struct UnknownAttribute
{
- OUString maNamespaceURL;
- OString maName;
- OString maValue;
+ OUString const maNamespaceURL;
+ OString const maName;
+ OString const maValue;
UnknownAttribute( const OUString& rNamespaceURL, const OString& rName, const OString& value );
UnknownAttribute( const OString& rName, const OString& value );
@@ -204,7 +204,7 @@ private:
std::vector< sal_Int32 > maAttributeTokens;
UnknownAttributeList maUnknownAttributes;
css::uno::Reference< css::xml::sax::XFastTokenHandler > mxTokenHandler;
- FastTokenHandlerBase *mpTokenHandler;
+ FastTokenHandlerBase * const mpTokenHandler;
};
}