diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-10-01 09:57:59 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2019-10-01 13:19:04 +0200 |
commit | 664de5a816bdcb68ada087f99ef5a76139890fdf (patch) | |
tree | 30dca6260b95bf402930be3eb33766923182b1c1 /fpicker/source/win32 | |
parent | f88160d640b3efe4ffdf8126795a56d25d83944d (diff) |
loplugin:stringconstant (clang-cl)
Change-Id: Id1a82cea4444255fdb693e126b7571a406094624
Reviewed-on: https://gerrit.libreoffice.org/79916
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'fpicker/source/win32')
-rw-r--r-- | fpicker/source/win32/VistaFilePicker.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fpicker/source/win32/VistaFilePicker.cxx b/fpicker/source/win32/VistaFilePicker.cxx index 1c888b44a6d5..a7ded90f6d60 100644 --- a/fpicker/source/win32/VistaFilePicker.cxx +++ b/fpicker/source/win32/VistaFilePicker.cxx @@ -542,9 +542,9 @@ void SAL_CALL VistaFilePicker::setDescription( const OUString& aDescription ) OUString SAL_CALL VistaFilePicker::getImplementationName() { if (m_bFolderPicker) - return OUString(FOLDER_PICKER_IMPL_NAME); + return FOLDER_PICKER_IMPL_NAME; else - return OUString(FILE_PICKER_IMPL_NAME); + return FILE_PICKER_IMPL_NAME; } sal_Bool SAL_CALL VistaFilePicker::supportsService(const OUString& sServiceName) |