Bug 74150 - Numbered list getting display after RT -table-within-table-1.docx
Summary: Numbered list getting display after RT -table-within-table-1.docx
Status: RESOLVED WORKSFORME
Alias: None
Product: LibreOffice
Classification: Unclassified
Component: LibreOffice (show other bugs)
Version:
(earliest affected)
unspecified
Hardware: Other All
: medium major
Assignee: Rajashri
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-01-28 11:17 UTC by Rajashri
Modified: 2015-05-16 09:13 UTC (History)
1 user (show)

See Also:
Crash report or crash signature:


Attachments
This is the original document which contains <w:numPr> tag. (54.22 KB, application/vnd.openxmlformats-officedocument.wordprocessingml.document)
2014-01-28 11:17 UTC, Rajashri
Details
File after RT (18.76 KB, application/vnd.openxmlformats-officedocument.wordprocessingml.document)
2014-01-28 11:18 UTC, Rajashri
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Rajashri 2014-01-28 11:17:45 UTC
Created attachment 92917 [details]
This is the original document which contains <w:numPr> tag.

After RT, for "<w:pStyle w:val="NumberedList1" />"
‒<w:numPr> is not getting preserved in document.xml
Comment 1 Rajashri 2014-01-28 11:18:15 UTC
Created attachment 92918 [details]
File after RT
Comment 2 Jorendc 2015-05-16 09:13:25 UTC
Looks like this is fixed.

Before:

 <w:pPr>
              <w:pStyle w:val="NumberedList1"/>
              <w:numPr>
                <w:ilvl w:val="0"/>
                <w:numId w:val="0"/>
              </w:numPr>
              <w:tabs>
                <w:tab w:val="left" w:pos="360"/>
              </w:tabs>
              <w:spacing w:line="260" w:lineRule="exact"/>
              <w:ind w:left="360" w:hanging="360"/>
            </w:pPr>
----------------------------------
after:


<w:pPr>
              <w:pStyle w:val="NumberedList1"/>
              <w:numPr>
                <w:ilvl w:val="0"/>
                <w:numId w:val="0"/>
              </w:numPr>
              <w:tabs>
                <w:tab w:val="left" w:pos="360" w:leader="none"/>
              </w:tabs>
              <w:spacing w:lineRule="exact" w:line="260"/>
              <w:ind w:left="360" w:hanging="360"/>
              <w:rPr/>
            </w:pPr>


Tested using Linux Mint x64 with LibreOffice Version: 5.0.0.0.alpha1+
Build ID: f3070563c3071e05e9c448e261fec1e397bffb48
Locale: nl-BE (nl_BE.UTF-8)

Kind regards,
Joren