Skip to content

Commit

Permalink
Merge pull request 'fix/bug70675' (#224) from fix/bug70675 into hotfi…
Browse files Browse the repository at this point in the history
  • Loading branch information
ElenaSubbotina committed Feb 11, 2025
2 parents 3889516 + 618a7ea commit b26e3e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OdfFile/Reader/Converter/docx_conversion_context.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2192,7 +2192,7 @@ int docx_conversion_context::process_paragraph_attr(odf_reader::text::paragraph_
{
odf_reader::list_style_container & list_styles = root()->odf_context().listStyleContainer();

if (list_style_stack_.empty() && list_styles.outline_style())
if (!list_style_stack_.empty() && list_styles.outline_style())
{
output_stream() << L"<w:numPr>";
output_stream() << L"<w:ilvl w:val=\"" << *outline_level - 1 << L"\"/>";
Expand Down

0 comments on commit b26e3e2

Please sign in to comment.