diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-02-17 22:39:08 -0600 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-02-17 23:15:51 -0600 |
commit | 3920bb664a1d60c3b32f8ff7e9bf6776581ef8b0 (patch) | |
tree | 27a78c15361f61955e5f443be8dd24ab4fec2c01 /sc | |
parent | d908a33013014fa198cf3d14c1b02b69df2a1323 (diff) |
coverity#984133 Uninitialized scalar field
Change-Id: I933aa0d34d99808ccc359acfd895a7b9ea60217c
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/core/data/conditio.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sc/source/core/data/conditio.cxx b/sc/source/core/data/conditio.cxx index 3d2b0c75878f..5974b8f27603 100644 --- a/sc/source/core/data/conditio.cxx +++ b/sc/source/core/data/conditio.cxx @@ -1599,8 +1599,9 @@ ScFormatEntry* ScCondFormatEntry::Clone( ScDocument* pDoc ) const //------------------------------------------------------------------------ -ScCondDateFormatEntry::ScCondDateFormatEntry( ScDocument* pDoc ): - ScFormatEntry( pDoc ) +ScCondDateFormatEntry::ScCondDateFormatEntry( ScDocument* pDoc ) + : ScFormatEntry( pDoc ) + , meType(condformat::TODAY) { } |