summaryrefslogtreecommitdiff
path: root/fpicker
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2023-11-08 08:41:12 +0100
committerStephan Bergmann <sbergman@redhat.com>2023-11-08 14:32:49 +0100
commite624979ce4e06f34ce8c8e8c2ee5c2b5a9a10f57 (patch)
treef6116daae1093b0ff3e92282888885ef92693232 /fpicker
parent3cd08e3b3c06336b0fb71c9f162796ce0f00f6fd (diff)
loplugin:unnecessarygetstr (clang-cl)
Change-Id: Ic0ec1614d48382bb5735a67bf9588657b9ebd521 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159106 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'fpicker')
-rw-r--r--fpicker/source/win32/VistaFilePickerImpl.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/fpicker/source/win32/VistaFilePickerImpl.cxx b/fpicker/source/win32/VistaFilePickerImpl.cxx
index 67e977156bd2..8a2531ab0119 100644
--- a/fpicker/source/win32/VistaFilePickerImpl.cxx
+++ b/fpicker/source/win32/VistaFilePickerImpl.cxx
@@ -1116,7 +1116,7 @@ void VistaFilePickerImpl::impl_sta_GetControlValue(Request& rRequest)
if ( SUCCEEDED(hResult) )
{
const OUString& sItem = m_lItems[bValue];
- aValue <<= OUString(sItem.getStr());
+ aValue <<= sItem;
}
}
break;