diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-02-29 19:54:52 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-03-01 16:39:50 +0100 |
commit | 85eda0537b3f378358542aacfa0689deccb680f1 (patch) | |
tree | 84364617d8867e8919b2eb0c64041bebef6bb4e3 /sd | |
parent | 5a78e93aec3636e04e47f4e74d7f2328fd0bbdbb (diff) |
cid#1459028 various checked_return warnings
and
cid#1459027, cid#1459026, cid#1459025, cid#1459024, cid#1459021,
cid#1459018
Change-Id: If92e7665fcf947c5daf3094b9003e85c5c51f48f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/89763
Tested-by: Caolán McNamara <caolanm@redhat.com>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/dlg/sdtreelb.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/dlg/sdtreelb.cxx b/sd/source/ui/dlg/sdtreelb.cxx index f8ce3a324ffc..8b2ca9ea209e 100644 --- a/sd/source/ui/dlg/sdtreelb.cxx +++ b/sd/source/ui/dlg/sdtreelb.cxx @@ -870,7 +870,7 @@ IMPL_LINK(SdPageObjsTLV, RequestingChildrenHdl, const weld::TreeIter&, rFileEntr if (!xPageEntry) { xPageEntry = m_xTreeView->make_iterator(&rFileEntry); - m_xTreeView->iter_children(*xPageEntry); + (void)m_xTreeView->iter_children(*xPageEntry); } else (void)m_xTreeView->iter_next_sibling(*xPageEntry); |