diff options
author | Sarper Akdemir <sarper.akdemir@collabora.com> | 2021-05-09 20:47:35 +0300 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2021-06-15 09:29:52 +0200 |
commit | b187c36e019f773a71687c819c3cf6a2c3fd2b89 (patch) | |
tree | 826734f44935ba488b4833880809a0d94e02c3ff /oox/source/drawingml/textparagraph.cxx | |
parent | 4a3b9d2092ff5ce8336cc87cacbdc421f3d26ea7 (diff) |
tdf#59323: ooxml import: hasParagraphProperties
Introduces hasParagraphProperties to determine whether or not there was a pPr
tag in the textbody on import.
Change-Id: I3c6815e8405b0087f64520ee4e0e39297b3b4548
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117005
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'oox/source/drawingml/textparagraph.cxx')
-rw-r--r-- | oox/source/drawingml/textparagraph.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/oox/source/drawingml/textparagraph.cxx b/oox/source/drawingml/textparagraph.cxx index b1c57205dc26..9e4f309e9391 100644 --- a/oox/source/drawingml/textparagraph.cxx +++ b/oox/source/drawingml/textparagraph.cxx @@ -38,6 +38,7 @@ using namespace ::com::sun::star::beans; namespace oox::drawingml { TextParagraph::TextParagraph() + : mbHasProperties( false ) { } |