From fe828d3cb10ee7663236b5cc49588bfc07efa890 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Sun, 28 Aug 2016 11:04:54 +0100 Subject: coverity#1242829 Uninitialized scalar field Change-Id: Icd847c620610b23e28daa58145bf333b7a9a10a3 --- cui/source/tabpages/tpbitmap.cxx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'cui') diff --git a/cui/source/tabpages/tpbitmap.cxx b/cui/source/tabpages/tpbitmap.cxx index 9776eda085d5..31e06172cf4d 100644 --- a/cui/source/tabpages/tpbitmap.cxx +++ b/cui/source/tabpages/tpbitmap.cxx @@ -92,7 +92,11 @@ SvxBitmapTabPage::SvxBitmapTabPage( vcl::Window* pParent, const SfxItemSet& rInA m_aXFillAttr ( rInAttrs.GetPool() ), m_rXFSet ( m_aXFillAttr.GetItemSet() ), - mpView(nullptr) + mpView(nullptr), + nFilledWidthPercent(0), + nFilledHeightPercent(0), + nZoomedWidthPercent(0), + nZoomedHeightPercent(0) { get(m_pBitmapLB,"BITMAP"); get(m_pBitmapStyleLB, "bitmapstyle"); -- cgit