Ignore:
Timestamp:
01/24/12 01:35:16 (4 months ago)
Author:
jharrop
Message:

Improvements to indentation (direct indent values are given priority over values in numbering, which in turn is given priority over values in styles), plus associated unit tests.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/docx4j/src/main/java/org/docx4j/openpackaging/parts/WordprocessingML/NumberingDefinitionsPart.java

    r1726 r1754  
    142142 
    143143        // instantiate the list number definitions 
    144         //foreach (XmlNode numNode in numberNodes) 
    145144        for( Numbering.Num numNode : numbering.getNum() ) 
    146145        { 
     
    235234                // Operating on the docx4j.listnumbering plane, 
    236235                // not the JAXB plane.. 
    237                 ListNumberingDefinition lnd = instanceListDefinitions.get(numId ); 
     236                ListNumberingDefinition lnd = getInstanceListDefinitions().get(numId ); 
    238237                if (lnd==null) { 
    239238                        log.debug("couldn't find list for numId: " + numId); 
Note: See TracChangeset for help on using the changeset viewer.