From 3ebbb150242cf049a9ddab7f498c63f3a44aa034 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 17 Oct 2019 15:14:02 +0200 Subject: loplugin:buffereadd find stuff involving adding *StringBuffer and create conversion methods on *StringBuffer to make this work Change-Id: I3cf5ee3e139826168894b46eff8ee4bcde00cb7e Reviewed-on: https://gerrit.libreoffice.org/80949 Tested-by: Jenkins Reviewed-by: Noel Grandin --- dbaccess/source/core/recovery/settingsimport.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'dbaccess') diff --git a/dbaccess/source/core/recovery/settingsimport.cxx b/dbaccess/source/core/recovery/settingsimport.cxx index 1c46b8b0717a..b64787aa82a4 100644 --- a/dbaccess/source/core/recovery/settingsimport.cxx +++ b/dbaccess/source/core/recovery/settingsimport.cxx @@ -139,8 +139,7 @@ namespace dbaccess o_rValue.clear(); // the characters building up th evalue - OUStringBuffer aCharacters( getAccumulatedCharacters() ); - const OUString sValue = aCharacters.makeStringAndClear(); + const OUString sValue = getAccumulatedCharacters().toString(); const OUString& rItemType( getItemType() ); ENSURE_OR_RETURN_VOID( !rItemType.isEmpty(), "no item type -> no item value" ); -- cgit