diff options
Diffstat (limited to 'sc')
-rw-r--r-- | sc/qa/unit/copy_paste_test.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/qa/unit/copy_paste_test.cxx b/sc/qa/unit/copy_paste_test.cxx index 9d933a370d0f..195e3ce585dd 100644 --- a/sc/qa/unit/copy_paste_test.cxx +++ b/sc/qa/unit/copy_paste_test.cxx @@ -49,7 +49,7 @@ void ScCopyPasteTest::testCopyPasteXLS() CPPUNIT_ASSERT( xDesktop.is() ); // create a frame - Reference< frame::XFrame > xTargetFrame = xDesktop->findFrame( OUString("_blank"), 0 ); + Reference< frame::XFrame > xTargetFrame = xDesktop->findFrame( "_blank", 0 ); CPPUNIT_ASSERT( xTargetFrame.is() ); // 1. Open the document @@ -98,8 +98,8 @@ void ScCopyPasteTest::testCopyPasteXLS() args[0].Value <<= sal_True; uno::Reference< lang::XComponent > xComponent = xDesktop->loadComponentFromURL( - OUString("private:factory/scalc"), - OUString("_blank"), + "private:factory/scalc", + "_blank", 0, args ); CPPUNIT_ASSERT( xComponent.is() ); |