summaryrefslogtreecommitdiff
path: root/include/unotest
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-08-22 13:41:58 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-08-22 15:46:24 +0200
commite724f245e9652230d4c1f58c353be150006affcd (patch)
treeaf4fe0d21add55b557dbc54385ac82ef7290b097 /include/unotest
parent8a82dca5bd43080f0f5597b915d1433b1c0f141a (diff)
loplugin:constmethod in test
Change-Id: I15aa90d962b9d428a911f4b47a06d55318b42ba4 Reviewed-on: https://gerrit.libreoffice.org/77953 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/unotest')
-rw-r--r--include/unotest/bootstrapfixturebase.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/unotest/bootstrapfixturebase.hxx b/include/unotest/bootstrapfixturebase.hxx
index 0a967d34d736..85f270b02c2c 100644
--- a/include/unotest/bootstrapfixturebase.hxx
+++ b/include/unotest/bootstrapfixturebase.hxx
@@ -59,9 +59,9 @@ public:
virtual ~BootstrapFixtureBase() override;
const css::uno::Reference<css::uno::XComponentContext>&
- getComponentContext() { return m_xContext; }
+ getComponentContext() const { return m_xContext; }
const css::uno::Reference<css::lang::XMultiServiceFactory>&
- getMultiServiceFactory() { return m_xSFactory; }
+ getMultiServiceFactory() const { return m_xSFactory; }
virtual void setUp() override;
virtual void tearDown() override;