diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-11-06 09:35:29 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-11-06 09:35:29 +0100 |
commit | 61b0a3d68578d182bb03a261a5b576baa82cd431 (patch) | |
tree | 16a8e4df6ec825d8b1a69279428bf2a0b9e6bd0a /desktop/source/app/sofficemain.cxx | |
parent | add39c3cc170004915eccc17e3101fe1b25556b7 (diff) |
loplugin:stringconstant: elide explicit ctor usage (automatic rewrite)
Change-Id: I776476909e66ce561b8a539a9939e5ed0e3c85fe
Diffstat (limited to 'desktop/source/app/sofficemain.cxx')
-rw-r--r-- | desktop/source/app/sofficemain.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/source/app/sofficemain.cxx b/desktop/source/app/sofficemain.cxx index 17586066f488..c94d5f146553 100644 --- a/desktop/source/app/sofficemain.cxx +++ b/desktop/source/app/sofficemain.cxx @@ -68,7 +68,7 @@ extern "C" int DESKTOP_DLLPUBLIC soffice_main() desktop::Desktop aDesktop; // This string is used during initialization of the Gtk+ VCL module - Application::SetAppName( OUString("soffice") ); + Application::SetAppName( "soffice" ); #ifdef UNX // handle --version and --help already here, otherwise they would be handled // after VCL initialization that might fail if $DISPLAY is not set |