summaryrefslogtreecommitdiff
path: root/extensions
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2021-02-22 09:26:15 +0000
committerCaolán McNamara <caolanm@redhat.com>2021-02-22 11:51:33 +0100
commitdec32864a61104001cb6ff63c218ea5fb2a7ab1e (patch)
tree9f474e944209d7c1e460ed12a56a7fe276385229 /extensions
parent0e9af8b2a6f8b740f5680201f35c128732ed357c (diff)
cid#1473244 silence Unchecked return value
Change-Id: If33e7cd76e361e8abfe71a88df0b3875759a059d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/111303 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'extensions')
-rw-r--r--extensions/source/bibliography/general.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/source/bibliography/general.cxx b/extensions/source/bibliography/general.cxx
index 5cadd05bc3a2..1b712259f80a 100644
--- a/extensions/source/bibliography/general.cxx
+++ b/extensions/source/bibliography/general.cxx
@@ -344,7 +344,7 @@ IMPL_LINK(BibGeneralPage, LastElementKeyInputHdl, const KeyEvent&, rKeyEvent, bo
xUpdateCursor->moveToInsertRow();
}
else
- xRowSet->next();
+ (void)xRowSet->next();
}
xIdentifierED->grab_focus();
xIdentifierED->select_region(0, -1);