summaryrefslogtreecommitdiff
path: root/fpicker
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-03-14 14:45:00 +0100
committerStephan Bergmann <sbergman@redhat.com>2017-03-14 14:45:00 +0100
commitb0fa3fc8e50e5baca523e68fa5e6591591dde52f (patch)
tree12146e9e293730bf5586345195392ef2fa76a20d /fpicker
parent8b378dac00de37655b61d13efd8fbf312472391d (diff)
loplugin:unoany (clang-cl)
Change-Id: Id16f382fbf038db543cab02d10dfedab5beb2848
Diffstat (limited to 'fpicker')
-rw-r--r--fpicker/source/win32/filepicker/VistaFilePickerImpl.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/fpicker/source/win32/filepicker/VistaFilePickerImpl.cxx b/fpicker/source/win32/filepicker/VistaFilePickerImpl.cxx
index eb798d87c348..9600b0bb4730 100644
--- a/fpicker/source/win32/filepicker/VistaFilePickerImpl.cxx
+++ b/fpicker/source/win32/filepicker/VistaFilePickerImpl.cxx
@@ -1118,7 +1118,7 @@ void VistaFilePickerImpl::impl_sta_GetControlValue(const RequestRef& rRequest)
BOOL bValue = FALSE;
HRESULT hResult = iCustom->GetCheckButtonState(nId, &bValue);
if ( SUCCEEDED(hResult) )
- aValue = css::uno::makeAny(bool(bValue));
+ aValue <<= bool(bValue);
}
break;
}