sw/qa/extras/tiledrendering/tiledrendering.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit b6fbebe2910946f5718d835e8ed7769cfa6f03ac Author: Miklos Vajna <vmik...@collabora.com> AuthorDate: Mon Jan 30 09:45:22 2023 +0100 Commit: Miklos Vajna <vmik...@collabora.com> CommitDate: Mon Jan 30 09:45:22 2023 +0100 CppunitTest_sw_tiledrendering: fix build Change-Id: I7b8ac44e49d4481a2840fc00b2b03dbc737ea0a1 diff --git a/sw/qa/extras/tiledrendering/tiledrendering.cxx b/sw/qa/extras/tiledrendering/tiledrendering.cxx index ced79f6beed6..d613b2738878 100644 --- a/sw/qa/extras/tiledrendering/tiledrendering.cxx +++ b/sw/qa/extras/tiledrendering/tiledrendering.cxx @@ -3799,7 +3799,7 @@ CPPUNIT_TEST_FIXTURE(SwTiledRenderingTest, testAuthorField) uno::Sequence<beans::PropertyValue> aPropertyValues1(comphelper::InitPropertySequence( { - {".uno:Author", uno::makeAny(sAuthor)}, + {".uno:Author", uno::Any(sAuthor)}, })); pXTextDocument->initializeForTiledRendering(aPropertyValues1); @@ -3837,7 +3837,7 @@ CPPUNIT_TEST_FIXTURE(SwTiledRenderingTest, testSavedAuthorField) const OUString sAuthor("XYZ ABCD"); uno::Sequence<beans::PropertyValue> aPropertyValues1(comphelper::InitPropertySequence( { - {".uno:Author", uno::makeAny(sAuthor)}, + {".uno:Author", uno::Any(sAuthor)}, })); pXTextDocument->initializeForTiledRendering(aPropertyValues1);