summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2016-12-15 21:15:29 +0000
committerCaolán McNamara <caolanm@redhat.com>2016-12-16 01:48:37 +0000
commiteb0e2dabde9d96892929f6902d8d10d722b83c3e (patch)
tree4a802b32f23af48efecb48c4eff52427be59bed4 /sfx2
parent0c565095983b0cc8b96a78012c611b7a03962204 (diff)
coverity#1397200 Unchecked return value
and coverity#1397201 Unchecked return value coverity#1397202 Unchecked return value Change-Id: I73cc6e3b08e6a44b27be2093ba568d46ebe0659a
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/appl/appmisc.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/appl/appmisc.cxx b/sfx2/source/appl/appmisc.cxx
index bf6a9a151b62..ea712f68548d 100644
--- a/sfx2/source/appl/appmisc.cxx
+++ b/sfx2/source/appl/appmisc.cxx
@@ -218,7 +218,7 @@ BitmapEx SfxApplication::GetApplicationLogo(long nWidth)
{
BitmapEx aBitmap;
SfxApplication::loadBrandSvg("flat_logo", aBitmap, nWidth);
- Application::LoadBrandBitmap ("about", aBitmap);
+ (void)Application::LoadBrandBitmap ("about", aBitmap);
return aBitmap;
}