Kaydet (Commit) e20d9867 authored tarafından Caolán McNamara's avatar Caolán McNamara

Werror=maybe-uninitialized on arm toolchain

Change-Id: If728a1da99d9146d60d15b5273a7a89764b82d51
üst 12eee112
...@@ -112,7 +112,7 @@ XMLUnderlineTypePropHdl::~XMLUnderlineTypePropHdl() ...@@ -112,7 +112,7 @@ XMLUnderlineTypePropHdl::~XMLUnderlineTypePropHdl()
bool XMLUnderlineTypePropHdl::importXML( const OUString& rStrImpValue, uno::Any& rValue, const SvXMLUnitConverter& ) const bool XMLUnderlineTypePropHdl::importXML( const OUString& rStrImpValue, uno::Any& rValue, const SvXMLUnitConverter& ) const
{ {
sal_uInt16 eNewUnderline; sal_uInt16 eNewUnderline(0);
bool bRet = SvXMLUnitConverter::convertEnum( bool bRet = SvXMLUnitConverter::convertEnum(
eNewUnderline, rStrImpValue, pXML_UnderlineType_Enum ); eNewUnderline, rStrImpValue, pXML_UnderlineType_Enum );
if( bRet ) if( bRet )
...@@ -194,7 +194,7 @@ XMLUnderlineStylePropHdl::~XMLUnderlineStylePropHdl() ...@@ -194,7 +194,7 @@ XMLUnderlineStylePropHdl::~XMLUnderlineStylePropHdl()
bool XMLUnderlineStylePropHdl::importXML( const OUString& rStrImpValue, uno::Any& rValue, const SvXMLUnitConverter& ) const bool XMLUnderlineStylePropHdl::importXML( const OUString& rStrImpValue, uno::Any& rValue, const SvXMLUnitConverter& ) const
{ {
sal_uInt16 eNewUnderline; sal_uInt16 eNewUnderline(0);
bool bRet = SvXMLUnitConverter::convertEnum( bool bRet = SvXMLUnitConverter::convertEnum(
eNewUnderline, rStrImpValue, pXML_UnderlineStyle_Enum ); eNewUnderline, rStrImpValue, pXML_UnderlineStyle_Enum );
if( bRet ) if( bRet )
...@@ -284,7 +284,7 @@ XMLUnderlineWidthPropHdl::~XMLUnderlineWidthPropHdl() ...@@ -284,7 +284,7 @@ XMLUnderlineWidthPropHdl::~XMLUnderlineWidthPropHdl()
bool XMLUnderlineWidthPropHdl::importXML( const OUString& rStrImpValue, uno::Any& rValue, const SvXMLUnitConverter& ) const bool XMLUnderlineWidthPropHdl::importXML( const OUString& rStrImpValue, uno::Any& rValue, const SvXMLUnitConverter& ) const
{ {
sal_uInt16 eNewUnderline; sal_uInt16 eNewUnderline(0);
bool bRet = SvXMLUnitConverter::convertEnum( bool bRet = SvXMLUnitConverter::convertEnum(
eNewUnderline, rStrImpValue, pXML_UnderlineWidth_Enum ); eNewUnderline, rStrImpValue, pXML_UnderlineWidth_Enum );
if( bRet ) if( bRet )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment