From 93985db3410f3ce685e6da6ef77457bb72d56201 Mon Sep 17 00:00:00 2001
From: Noel Grandin <noel.grandin@collabora.co.uk>
Date: Mon, 13 Mar 2017 12:16:34 +0200
Subject: fix android build

Change-Id: I960768ff98137a50da44348bffeec329295ea95f
---
 xmloff/source/style/cdouthdl.cxx | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'xmloff')

diff --git a/xmloff/source/style/cdouthdl.cxx b/xmloff/source/style/cdouthdl.cxx
index 35113f3976c3..7f10c0288916 100644
--- a/xmloff/source/style/cdouthdl.cxx
+++ b/xmloff/source/style/cdouthdl.cxx
@@ -81,7 +81,7 @@ XMLCrossedOutTypePropHdl::~XMLCrossedOutTypePropHdl()
 
 bool XMLCrossedOutTypePropHdl::importXML( const OUString& rStrImpValue, uno::Any& rValue, const SvXMLUnitConverter& ) const
 {
-    sal_uInt16 eNewStrikeout;
+    sal_uInt16 eNewStrikeout = 0;
     bool bRet = SvXMLUnitConverter::convertEnum(
         eNewStrikeout, rStrImpValue, pXML_CrossedoutType_Enum );
     if( bRet )
@@ -204,7 +204,7 @@ XMLCrossedOutWidthPropHdl::~XMLCrossedOutWidthPropHdl()
 
 bool XMLCrossedOutWidthPropHdl::importXML( const OUString& rStrImpValue, uno::Any& rValue, const SvXMLUnitConverter& ) const
 {
-    sal_uInt16 eNewStrikeout;
+    sal_uInt16 eNewStrikeout = 0;
     bool bRet = SvXMLUnitConverter::convertEnum(
         eNewStrikeout, rStrImpValue, pXML_CrossedoutWidth_Enum );
     if( bRet )
-- 
cgit