Fix for corrupted list styles

This commit is contained in:
Georgy Litvinov 2016-12-21 20:23:39 +03:00 committed by Georgy Litvinov
parent 512850e280
commit 079afa9b7a

View file

@ -102,15 +102,16 @@ public class ListCounter {
}
public String getPrefix() {
if (style.isNumber(nLevel)) {
String sPrefix = style.getLevelProperty(nLevel,XMLString.STYLE_NUM_PREFIX);
return sPrefix!=null ? sPrefix : "";
}
if (style != null && style.isNumber(nLevel)) {
String sPrefix = style.getLevelProperty(nLevel,XMLString.STYLE_NUM_PREFIX);
return sPrefix!=null ? sPrefix : "";
}
return "";
}
public String getLabelAndSuffix() {
if (style.isNumber(nLevel)) {
if (style != null && style.isNumber(nLevel)) {
String sLabel="";
if (sNumFormat[nLevel]==null) return "";
int nLevels = Misc.getPosInteger(style.getLevelProperty(nLevel,
@ -126,7 +127,7 @@ public class ListCounter {
if (sLabel.length()>0 && sSpace!=null) { sLabel+=sSpace; }
return sLabel;
}
else if (style.isBullet(nLevel)) {
else if (style != null && style.isBullet(nLevel)) {
return style.getLevelProperty(nLevel,XMLString.TEXT_BULLET_CHAR);
}
else {