summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-01-26 10:12:19 +0000
committerCaolán McNamara <caolanm@redhat.com>2015-01-26 12:14:37 +0000
commit0efc6db2dd460e53f4eec5a26e1b65287b82d2cf (patch)
tree7ae7c988e366a79a243edb81972e7f291346e4e1 /svx
parent60bac4a8e47c87ec30e70d2c0120072aba931d5f (diff)
coverity#1266440 Unchecked return value
Change-Id: I84a9c08e539c98408d49b2f4276fb547d2deefd7
Diffstat (limited to 'svx')
-rw-r--r--svx/source/tbxctrls/Palette.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/tbxctrls/Palette.cxx b/svx/source/tbxctrls/Palette.cxx
index 125dd47741ab..e03bed290bc9 100644
--- a/svx/source/tbxctrls/Palette.cxx
+++ b/svx/source/tbxctrls/Palette.cxx
@@ -193,7 +193,7 @@ void PaletteSOC::LoadColorSet( SvxColorValueSet& rColorSet )
{
mbLoadedPalette = true;
mpColorList = XPropertyList::AsColorList(XPropertyList::CreatePropertyListFromURL(XCOLOR_LIST, maFPath));
- mpColorList->Load();
+ (void)mpColorList->Load();
}
rColorSet.Clear();
if( mpColorList.is() )