diff options
author | Xisco Fauli <xiscofauli@libreoffice.org> | 2024-07-02 11:18:04 +0200 |
---|---|---|
committer | Xisco Fauli <xiscofauli@libreoffice.org> | 2024-07-02 15:35:00 +0200 |
commit | 83a8d5a275e9ba636a133ff25bdb53974aae87ae (patch) | |
tree | c6a77d602a23323d818ddb3c2ae11621c11c34d9 /extensions | |
parent | 49e3ebcaa1ff06e9ae35ba4117e2465e447cee78 (diff) |
BootstrapFixture: get rid of mxComponentContext
Change-Id: I0318485c3c0159277e47096e0c7e0df8ed109ea4
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/169865
Tested-by: Jenkins
Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/qa/bibliography/bibliography.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/extensions/qa/bibliography/bibliography.cxx b/extensions/qa/bibliography/bibliography.cxx index 1657fec35db9..6c716269ad9b 100644 --- a/extensions/qa/bibliography/bibliography.cxx +++ b/extensions/qa/bibliography/bibliography.cxx @@ -26,8 +26,7 @@ class Test : public test::BootstrapFixture, public unotest::MacrosTest CPPUNIT_TEST_FIXTURE(Test, testBibliographyLoader) { // Given a bibliography provider: - uno::Reference<container::XNameAccess> xBibAccess - = frame::Bibliography::create(mxComponentContext); + uno::Reference<container::XNameAccess> xBibAccess = frame::Bibliography::create(m_xContext); uno::Reference<beans::XPropertySet> xPropSet(xBibAccess, uno::UNO_QUERY); uno::Sequence<beans::PropertyValue> aSeq; |