summaryrefslogtreecommitdiff
path: root/wizards/com/sun/star/wizards/text/TextDocument.java
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-08-08 11:36:04 +0200
committerNoel Grandin <noel@peralex.com>2014-08-13 08:49:22 +0200
commitda677dfd59c2b551f3335ee0a5d5dfb33f9869c5 (patch)
tree9aa09066c95935117bf405b119ed9f89f448a54d /wizards/com/sun/star/wizards/text/TextDocument.java
parent14d1a11ec4a7ed0deeac522403248536e8d23f57 (diff)
java: reduce scope, make fields private
found by UCDetector Change-Id: I7f97e15667159cf8ee776e8f32fdcdec8ec00ed6
Diffstat (limited to 'wizards/com/sun/star/wizards/text/TextDocument.java')
-rw-r--r--wizards/com/sun/star/wizards/text/TextDocument.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/wizards/com/sun/star/wizards/text/TextDocument.java b/wizards/com/sun/star/wizards/text/TextDocument.java
index 6fb26b50e404..dfc48860a9b3 100644
--- a/wizards/com/sun/star/wizards/text/TextDocument.java
+++ b/wizards/com/sun/star/wizards/text/TextDocument.java
@@ -80,14 +80,14 @@ public class TextDocument
public XText xText;
public XMultiServiceFactory xMSFDoc;
public XMultiServiceFactory xMSF;
- public com.sun.star.util.XNumberFormatsSupplier xNumberFormatsSupplier;
+ private com.sun.star.util.XNumberFormatsSupplier xNumberFormatsSupplier;
public com.sun.star.awt.XWindowPeer xWindowPeer;
public int PageWidth;
public int ScaleWidth;
- public Size DocSize;
+ private Size DocSize;
public com.sun.star.awt.Rectangle PosSize;
- public com.sun.star.lang.Locale CharLocale;
- public XStorable xStorable;
+ private com.sun.star.lang.Locale CharLocale;
+ private XStorable xStorable;
// creates an instance of TextDocument and creates a named frame. No document is actually loaded into this frame.
public TextDocument(XMultiServiceFactory xMSF, XTerminateListener listener, String FrameName)