diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-11-06 09:35:16 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-11-06 09:35:16 +0100 |
commit | 5de01333b62544c36702dab9e44764272794bc7f (patch) | |
tree | 2c33b3e973ac46bb4e76d58ca3d7d216db380fdc /cui/source/tabpages/tplnedef.cxx | |
parent | 0167885e0ade1df2872b864a3bc99b22a186672a (diff) |
loplugin:stringconstant: elide explicit ctor usage (automatic rewrite)
Change-Id: I52bdf6e2ee843e9cc08d0d4f1eb1bc6dcd15f10a
Diffstat (limited to 'cui/source/tabpages/tplnedef.cxx')
-rw-r--r-- | cui/source/tabpages/tplnedef.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cui/source/tabpages/tplnedef.cxx b/cui/source/tabpages/tplnedef.cxx index 4ed6ca472e1a..89d4a8209ace 100644 --- a/cui/source/tabpages/tplnedef.cxx +++ b/cui/source/tabpages/tplnedef.cxx @@ -841,7 +841,7 @@ IMPL_LINK_NOARG_TYPED(SvxLineDefTabPage, ClickSaveHdl_Impl, Button*, void) aFile.Append( pDashList->GetName() ); if( aFile.getExtension().isEmpty() ) - aFile.SetExtension( OUString("sod") ); + aFile.SetExtension( "sod" ); } aDlg.SetDisplayDirectory( aFile.GetMainURL( INetURLObject::NO_DECODE ) ); |