diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-01-27 20:36:06 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-01-28 11:29:17 +0000 |
commit | 12d7d3f368cfe82c2ec8c3f1779ebb43ef3d1453 (patch) | |
tree | 118db9c219815e1f5fc8c2937ecbc037f218f3ef /sc | |
parent | f829af4d8087f5521379002797821ab1c678916d (diff) |
coverity#1130485 Uninitialized scalar field
Change-Id: I18e90afe2c2425a0b6b65fdf46497aac8c755fcf
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/StatisticsDialogs/TableFillingAndNavigationTools.cxx | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sc/source/ui/StatisticsDialogs/TableFillingAndNavigationTools.cxx b/sc/source/ui/StatisticsDialogs/TableFillingAndNavigationTools.cxx index 53e01bfc8dbb..c4ff9151ef4d 100644 --- a/sc/source/ui/StatisticsDialogs/TableFillingAndNavigationTools.cxx +++ b/sc/source/ui/StatisticsDialogs/TableFillingAndNavigationTools.cxx @@ -203,9 +203,11 @@ void AddressWalkerWriter::writeValue(double aValue) // DataCellIterator -DataCellIterator::DataCellIterator(ScRange aInputRange, bool aByColumn) : - mInputRange(aInputRange), - mByColumn(aByColumn) +DataCellIterator::DataCellIterator(ScRange aInputRange, bool aByColumn) + : mInputRange(aInputRange) + , mByColumn(aByColumn) + , mCol(0) + , mRow(0) { if(aByColumn) mCol = aInputRange.aStart.Col(); |