oox/source/drawingml/textliststyle.cxx | 1 + 1 file changed, 1 insertion(+)
New commits: commit 669926c70db7837f698b9aaa94afeaf70d242c18 Author: Sarper Akdemir <[email protected]> AuthorDate: Sat Jun 19 20:55:10 2021 +0100 Commit: Mike Kaganski <[email protected]> CommitDate: Wed Jun 23 11:49:58 2021 +0200 cid#1486005 Uninitialized scalar field since... commit 2cfccfba09faa5c3bb973136ffe99d534d09c881 Date: Sun May 9 20:56:41 2021 +0300 tdf#59323: ooxml import: hasListStyleOnImport Change-Id: Ib5d557bc0037bb72e9635391d6991fc1d8e5f2a9 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117504 Tested-by: Jenkins Reviewed-by: Caolán McNamara <[email protected]> Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117625 Tested-by: Jenkins CollaboraOffice <[email protected]> Reviewed-by: Mike Kaganski <[email protected]> diff --git a/oox/source/drawingml/textliststyle.cxx b/oox/source/drawingml/textliststyle.cxx index 749cc17268e4..8f705f350e83 100644 --- a/oox/source/drawingml/textliststyle.cxx +++ b/oox/source/drawingml/textliststyle.cxx @@ -37,6 +37,7 @@ TextListStyle::~TextListStyle() } TextListStyle::TextListStyle(const TextListStyle& rStyle) + : mbHasListStyleOnImport(false) { assert(rStyle.maListStyle.size() == 9); assert(rStyle.maAggregationListStyle.size() == 9); _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
