diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-06-26 13:52:37 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-06-26 13:55:30 +0200 |
commit | d496ad9beb57d733fc0cd14059d18fcf34138eb1 (patch) | |
tree | e8691abaaba7ab67204a7ffa9a8dea28edd08de2 | |
parent | 8fd802eb33e1df5e2445acda6c7a3fa862162fa0 (diff) |
loplugin:stringconstant: handle OUString+=OUString(literal)
Change-Id: I5af9cc77f0329148925ac1b4f0de1df7634a7e08
-rw-r--r-- | connectivity/source/drivers/mork/mork_helper.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/connectivity/source/drivers/mork/mork_helper.cxx b/connectivity/source/drivers/mork/mork_helper.cxx index 9674f5ab2deb..8231d716a620 100644 --- a/connectivity/source/drivers/mork/mork_helper.cxx +++ b/connectivity/source/drivers/mork/mork_helper.cxx @@ -44,7 +44,7 @@ int main(void) OUString profilePath = access->getProfilePath(::com::sun::star::mozilla::MozillaProductType_Thunderbird, defaultProfile); SAL_INFO("connectivity.mork", "ProfilePath: " << profilePath); - profilePath += OUString( "/abook.mab" ); + profilePath += "/abook.mab"; SAL_INFO("connectivity.mork", "abook.mab: " << profilePath); OString aOString = OUStringToOString( profilePath, RTL_TEXTENCODING_UTF8 ); |