Part of code for converting page style column count property

This commit is contained in:
Georgy Litvinov 2020-01-27 18:53:57 +01:00
parent e5e2603203
commit 525ec1ee6b
3 changed files with 50 additions and 35 deletions

View file

@ -27,6 +27,7 @@ package writer2latex.office;
import org.w3c.dom.Node;
import writer2latex.util.Misc;
import writer2latex.xhtml.Debug;
/** <p> Class representing a master page in OOo Writer </p> */
public class MasterPage extends OfficeStyle {
@ -35,7 +36,7 @@ public class MasterPage extends OfficeStyle {
private Node headerLeft = null;
private Node footer = null;
private Node footerLeft = null;
private int columns = 1;
public String getProperty(String sPropName) {
return properties.getProperty(sPropName);
}