summaryrefslogtreecommitdiff
path: root/starmath/source/mathmlimport.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-08-03 13:14:02 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-08-03 15:27:37 +0200
commit24817c26b3f8cc1a8156357316be442e5460a1a7 (patch)
treee361e25d9ca4cd269fde426ddba135d87d6aba67 /starmath/source/mathmlimport.hxx
parentb9e9dde5ae6f8955b5e6584dd5d809c98bb66814 (diff)
loplugin:constparams in starmath
Change-Id: Iac470b572311241216622f22bc543c0bd10a28f6 Reviewed-on: https://gerrit.libreoffice.org/40714 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'starmath/source/mathmlimport.hxx')
-rw-r--r--starmath/source/mathmlimport.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/starmath/source/mathmlimport.hxx b/starmath/source/mathmlimport.hxx
index c0e43d8cd83a..4db626df4d0a 100644
--- a/starmath/source/mathmlimport.hxx
+++ b/starmath/source/mathmlimport.hxx
@@ -40,7 +40,7 @@ class SmXMLImportWrapper
css::uno::Reference<css::frame::XModel> xModel;
public:
- explicit SmXMLImportWrapper(css::uno::Reference<css::frame::XModel> &rRef)
+ explicit SmXMLImportWrapper(css::uno::Reference<css::frame::XModel> const &rRef)
: xModel(rRef) {}
ErrCode Import(SfxMedium &rMedium);
@@ -48,8 +48,8 @@ public:
static ErrCode ReadThroughComponent(
const css::uno::Reference< css::io::XInputStream >& xInputStream,
const css::uno::Reference< css::lang::XComponent >& xModelComponent,
- css::uno::Reference< css::uno::XComponentContext > & rxContext,
- css::uno::Reference< css::beans::XPropertySet > & rPropSet,
+ css::uno::Reference< css::uno::XComponentContext > const & rxContext,
+ css::uno::Reference< css::beans::XPropertySet > const & rPropSet,
const sal_Char* pFilterName,
bool bEncrypted );
@@ -58,8 +58,8 @@ public:
const css::uno::Reference< css::lang::XComponent >& xModelComponent,
const sal_Char* pStreamName,
const sal_Char* pCompatibilityStreamName,
- css::uno::Reference< css::uno::XComponentContext > & rxContext,
- css::uno::Reference< css::beans::XPropertySet > & rPropSet,
+ css::uno::Reference< css::uno::XComponentContext > const & rxContext,
+ css::uno::Reference< css::beans::XPropertySet > const & rPropSet,
const sal_Char* pFilterName );
};