summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-10-27 13:33:54 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-10-27 14:34:21 +0000
commit6a0985eca284e6e2eb6a80e284ab5c59d8b005f7 (patch)
tree79840368eff5a52371693cb79a94bb5774d59c42 /desktop
parent0e36884e78f30e546633bf0bcd814005c5b9b8c2 (diff)
coverity#1209023 silence Unchecked return value from library
Change-Id: I7340b9ad9d482f6835ff7a4755df451fd146b86c
Diffstat (limited to 'desktop')
-rw-r--r--desktop/source/deployment/registry/package/dp_package.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/source/deployment/registry/package/dp_package.cxx b/desktop/source/deployment/registry/package/dp_package.cxx
index 5e4f96d072ee..a3903d2f0094 100644
--- a/desktop/source/deployment/registry/package/dp_package.cxx
+++ b/desktop/source/deployment/registry/package/dp_package.cxx
@@ -1398,7 +1398,7 @@ Reference<deployment::XPackage> BackendImpl::PackageImpl::bindBundleItem(
if (notifyDetectionError ||
!exc.isExtractableTo( cppu::UnoType<lang::IllegalArgumentException>::get()) )
{
- interactContinuation(
+ (void)interactContinuation(
Any( lang::WrappedTargetException("bundle item error!",
static_cast<OWeakObject *>(this), exc ) ),
cppu::UnoType<task::XInteractionApprove>::get(), xCmdEnv, 0, 0 );