summaryrefslogtreecommitdiff
path: root/unotest
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2024-11-08 12:00:27 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2024-11-08 15:23:52 +0100
commited0b12f4eadf1f2242f06cbd56804f75376274b1 (patch)
tree7028abd9cf514c74bd1b795cc6398b0bb433f319 /unotest
parent5ff283e3b841230a45715e48a251c3c4216d1cec (diff)
no need to take a copy of the getProcessComponentContext return value
we can just take a "const &". (found by running clang-tidy with the performance-unnecessary-copy-initialization warning) Change-Id: I20fd208c65303da78170b1ac06c638fdf3aa094b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/176267 Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> Tested-by: Jenkins
Diffstat (limited to 'unotest')
-rw-r--r--unotest/source/cpp/macros_test.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/unotest/source/cpp/macros_test.cxx b/unotest/source/cpp/macros_test.cxx
index 245ef13e5e8d..83df09259d45 100644
--- a/unotest/source/cpp/macros_test.cxx
+++ b/unotest/source/cpp/macros_test.cxx
@@ -87,7 +87,8 @@ MacrosTest::dispatchCommand(const uno::Reference<lang::XComponent>& xComponent,
uno::Reference<frame::XDispatchProvider> xFrame(xController->getFrame(), uno::UNO_QUERY);
CPPUNIT_ASSERT(xFrame.is());
- uno::Reference<uno::XComponentContext> xContext = ::comphelper::getProcessComponentContext();
+ const uno::Reference<uno::XComponentContext>& xContext
+ = ::comphelper::getProcessComponentContext();
uno::Reference<frame::XDispatchHelper> xDispatchHelper(frame::DispatchHelper::create(xContext));
CPPUNIT_ASSERT(xDispatchHelper.is());
@@ -100,7 +101,7 @@ MacrosTest::dispatchCommand(const uno::Reference<lang::XComponent>& xComponent,
std::unique_ptr<SvStream> MacrosTest::parseExportStream(const OUString& url,
const OUString& rStreamName)
{
- uno::Reference<uno::XComponentContext> xComponentContext
+ const uno::Reference<uno::XComponentContext>& xComponentContext
= comphelper::getProcessComponentContext();
uno::Reference<packages::zip::XZipFileAccess2> const xZipNames(
packages::zip::ZipFileAccess::createWithURL(xComponentContext, url));