diff options
author | Caolán McNamara <caolanm@redhat.com> | 2022-02-26 15:09:08 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2022-02-26 20:04:02 +0100 |
commit | dfa791941ee13bd06adc91ed097c44b65a995a14 (patch) | |
tree | 8118abf586725aae41588d5d8d2187d13dce7ea3 /sc | |
parent | ad4692357b2d32ab10301576031a60ff68b51482 (diff) |
cid#1500582 Uninitialized scalar variable
Change-Id: Idec4ce43f99be60658a6e60cff73dd6702bb3d91
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/130591
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/inc/sortparam.hxx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sc/inc/sortparam.hxx b/sc/inc/sortparam.hxx index d9047f873b1e..63d83e2c0595 100644 --- a/sc/inc/sortparam.hxx +++ b/sc/inc/sortparam.hxx @@ -165,6 +165,14 @@ struct ReorderParam * original reordering. */ void reverse(); + + ReorderParam() + : mbByRow(false) + , mbHiddenFiltered(false) + , mbUpdateRefs(false) + , mbHasHeaders(false) + { + } }; } |