diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-11-06 09:36:49 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-11-06 09:36:49 +0100 |
commit | e53db9461e1cc7ad25ecf5e96021a2f4e70857b1 (patch) | |
tree | 768cc65694d0bf8c01e7a7cc192ad55240b58993 /sc/qa/extras/scannotationobj.cxx | |
parent | 1a3834d7b9382968cf7ba3755d41a6e317997aec (diff) |
loplugin:stringconstant: elide explicit ctor usage (automatic rewrite)
Change-Id: Ief66447f04245b8ab0a4acbf097eb7283529d45d
Diffstat (limited to 'sc/qa/extras/scannotationobj.cxx')
-rw-r--r-- | sc/qa/extras/scannotationobj.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/qa/extras/scannotationobj.cxx b/sc/qa/extras/scannotationobj.cxx index 85316528b211..e0b25000acc9 100644 --- a/sc/qa/extras/scannotationobj.cxx +++ b/sc/qa/extras/scannotationobj.cxx @@ -82,7 +82,7 @@ uno::Reference< uno::XInterface > ScAnnontationObj::init() // get the test file OUString aFileURL; - createFileURL(OUString("ScAnnotationObj.ods"), aFileURL); + createFileURL("ScAnnotationObj.ods", aFileURL); if(!mxComponent.is()) mxComponent = loadFromDesktop(aFileURL); CPPUNIT_ASSERT_MESSAGE("Component not loaded",mxComponent.is()); |