From 9aad1dfc7480c2972a4b671699c8729f9c674559 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Tue, 20 Oct 2020 08:44:37 +0100 Subject: cid#1468269 Uninitialized scalar field MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I4457019570571c810265bf721cdefb0bdd65dd7b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/104551 Tested-by: Caolán McNamara Reviewed-by: Caolán McNamara --- chart2/source/view/charttypes/PieChart.cxx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'chart2/source') diff --git a/chart2/source/view/charttypes/PieChart.cxx b/chart2/source/view/charttypes/PieChart.cxx index 9b7279599f8b..b3dd54dec86d 100644 --- a/chart2/source/view/charttypes/PieChart.cxx +++ b/chart2/source/view/charttypes/PieChart.cxx @@ -863,7 +863,9 @@ void PieChart::createShapes() PieChart::PieLabelInfo::PieLabelInfo() : aFirstPosition(), aOrigin(), fValue(0.0) - , bMovementAllowed(false), bMoved(false), pPrevious(nullptr),pNext(nullptr) + , bMovementAllowed(false), bMoved(false) + , bShowLeaderLine(false), pPrevious(nullptr) + , pNext(nullptr) { } -- cgit