[Libreoffice-commits] core.git: extensions/source
Caolán McNamara (via logerrit)
logerrit at kemper.freedesktop.org
Mon Feb 22 10:52:21 UTC 2021
extensions/source/bibliography/general.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit dec32864a61104001cb6ff63c218ea5fb2a7ab1e
Author: Caolán McNamara <caolanm at redhat.com>
AuthorDate: Mon Feb 22 09:26:15 2021 +0000
Commit: Caolán McNamara <caolanm at redhat.com>
CommitDate: Mon Feb 22 11:51:33 2021 +0100
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 at redhat.com>
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);
More information about the Libreoffice-commits
mailing list