sw/source/core/doc/DocumentRedlineManager.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit bc206f7fd3b4a9e843c81f39dcd2faeeff9c785a
Author:     Caolán McNamara <caol...@redhat.com>
AuthorDate: Sat Dec 18 10:28:05 2021 +0000
Commit:     Caolán McNamara <caol...@redhat.com>
CommitDate: Sat Dec 18 16:04:19 2021 +0100

    cid#1495785 silence Unchecked return value
    
    Change-Id: I7a5e2e02e00de95e84e412bfa639b694677ab649
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/127025
    Tested-by: Jenkins
    Reviewed-by: Caolán McNamara <caol...@redhat.com>

diff --git a/sw/source/core/doc/DocumentRedlineManager.cxx 
b/sw/source/core/doc/DocumentRedlineManager.cxx
index ae5dc4c437e5..32ab0a476f6a 100644
--- a/sw/source/core/doc/DocumentRedlineManager.cxx
+++ b/sw/source/core/doc/DocumentRedlineManager.cxx
@@ -456,7 +456,7 @@ namespace
             {
                 // update property "HasTextChangesOnly"
                 SwRedlineTable::size_type nPos = 0;
-                pLine->UpdateTextChangesOnly(nPos);
+                (void)pLine->UpdateTextChangesOnly(nPos);
             }
         }
     }

Reply via email to