diff options
author | Thorsten Behrens <thorsten.behrens@CIB.de> | 2016-05-04 14:13:23 +0200 |
---|---|---|
committer | Thorsten Behrens <Thorsten.Behrens@CIB.de> | 2016-05-04 14:15:43 +0200 |
commit | 2cf939b2da466b33189de153a1bbbb5c40485cee (patch) | |
tree | ab0ce969a3a0a6f9134ecf5a7accc0f7a81661ad /chart2 | |
parent | 8efd941ca2638ce367938ef3aa289005fe42e905 (diff) |
-Werror=maybe-uninitialized
Change-Id: Id516aa921d13ff5c0085fb9cf76fefd56acb31ad
Diffstat (limited to 'chart2')
-rw-r--r-- | chart2/source/controller/chartapiwrapper/WrappedSeriesOrDiagramProperty.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chart2/source/controller/chartapiwrapper/WrappedSeriesOrDiagramProperty.hxx b/chart2/source/controller/chartapiwrapper/WrappedSeriesOrDiagramProperty.hxx index 733899470536..c159dfd12d1f 100644 --- a/chart2/source/controller/chartapiwrapper/WrappedSeriesOrDiagramProperty.hxx +++ b/chart2/source/controller/chartapiwrapper/WrappedSeriesOrDiagramProperty.hxx @@ -141,7 +141,7 @@ public: if( m_ePropertyType == DIAGRAM ) { bool bHasAmbiguousValue = false; - PROPERTYTYPE aValue; + PROPERTYTYPE aValue = PROPERTYTYPE(); if( detectInnerValue( aValue, bHasAmbiguousValue ) ) { if(bHasAmbiguousValue) |