summaryrefslogtreecommitdiff
path: root/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/SheetSettings.java
diff options
context:
space:
mode:
Diffstat (limited to 'xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/SheetSettings.java')
-rw-r--r--xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/SheetSettings.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/SheetSettings.java b/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/SheetSettings.java
index 05b078cd2958..11f938bb41f2 100644
--- a/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/SheetSettings.java
+++ b/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/SheetSettings.java
@@ -281,7 +281,7 @@ public class SheetSettings implements OfficeConstants {
* @param name xml name of the attribute to set
* @param value String value fo the attribute
*/
- public void addAttribute(String name, String value) {
+ private void addAttribute(String name, String value) {
if(name.equals("CursorPositionX")) {
cursorX = Integer.parseInt(value);
@@ -312,7 +312,7 @@ public class SheetSettings implements OfficeConstants {
*
* @param root XML Node to read from
*/
- public void readNode(Node root) {
+ private void readNode(Node root) {
NamedNodeMap sheetAtt = root.getAttributes();