From 7ec1643c9f6be0c0772e75ccbf8c528ac07d955f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= Date: Sat, 11 Oct 2014 20:36:00 +0100 Subject: [PATCH] coverity#1226478 Unchecked return value Change-Id: Idcd3f35d1b5f097e61963083f11712e4ab87bdaa --- sw/source/core/doc/DocumentContentOperationsManager.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sw/source/core/doc/DocumentContentOperationsManager.cxx b/sw/source/core/doc/DocumentContentOperationsManager.cxx index c801788ffab0..0ae2356b9928 100644 --- a/sw/source/core/doc/DocumentContentOperationsManager.cxx +++ b/sw/source/core/doc/DocumentContentOperationsManager.cxx @@ -1465,7 +1465,7 @@ namespace //local functions originally from docfmt.cxx if( pNode->IsTxtNode() && pCharSet && pCharSet->Count() ) { SwRegHistory history( pNode, *pNode, pHistory ); - history.InsertItems(*pCharSet, + (void)history.InsertItems(*pCharSet, 0, aCntEnd.GetIndex(), nFlags); }