From 7a60e90ef05c84923f83882efc01c33fef1ed305 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Mon, 16 Jan 2017 14:15:13 +0200 Subject: new loplugin: useuniqueptr: helpcompiler..io Change-Id: I6b394163c144e6b5540cb160abb613d56fe327de Reviewed-on: https://gerrit.libreoffice.org/33165 Tested-by: Jenkins Reviewed-by: Noel Grandin --- i18npool/source/calendar/calendar_gregorian.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'i18npool/source/calendar') diff --git a/i18npool/source/calendar/calendar_gregorian.cxx b/i18npool/source/calendar/calendar_gregorian.cxx index c7ff413d297a..e70666ea5483 100644 --- a/i18npool/source/calendar/calendar_gregorian.cxx +++ b/i18npool/source/calendar/calendar_gregorian.cxx @@ -168,14 +168,13 @@ Calendar_gregorian::init(const Era *_eraArray) icu::Locale aIcuLocale( "", nullptr, nullptr, "calendar=gregorian"); UErrorCode status; - body = icu::Calendar::createInstance( aIcuLocale, status = U_ZERO_ERROR); + body.reset( icu::Calendar::createInstance( aIcuLocale, status = U_ZERO_ERROR) ); if (!body || !U_SUCCESS(status)) throw ERROR; eraArray=_eraArray; } Calendar_gregorian::~Calendar_gregorian() { - delete body; } Calendar_hanja::Calendar_hanja() -- cgit