diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-12-24 20:34:47 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-12-26 09:48:13 +0000 |
commit | 6809783a988ff2271850bb3b5f8843f03fb658c9 (patch) | |
tree | 8fecc546de9874d0a12c4acea2cd2e71360e5584 /sc | |
parent | 8ec545531992251d3670c1bd3b1d1e0c9c998db0 (diff) |
coverity#1260448 Uninitialized scalar field
Change-Id: I12292071f42ba3011172f35eba1be61ecd3d8483
Diffstat (limited to 'sc')
-rw-r--r-- | sc/qa/unit/filters-test.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/qa/unit/filters-test.cxx b/sc/qa/unit/filters-test.cxx index 3e3b02b96d1a..4beeb54a315f 100644 --- a/sc/qa/unit/filters-test.cxx +++ b/sc/qa/unit/filters-test.cxx @@ -763,9 +763,9 @@ void ScFiltersTest::testSortWithSheetExternalReferencesODS_Impl( ScDocShellRef x } } - ScFiltersTest::ScFiltersTest() - : ScBootstrapFixture( "/sc/qa/unit/data" ) + : ScBootstrapFixture( "/sc/qa/unit/data" ) + , mbUpdateReferenceOnSort(false) { } |