summaryrefslogtreecommitdiff
path: root/wizards/com/sun/star/wizards/ui/ControlScroller.java
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-11-27 14:08:09 +0200
committerNoel Grandin <noel@peralex.com>2014-11-27 14:19:35 +0200
commit2eb6f15102c8ea2374ae8fa19e5ac9693a4ee05e (patch)
tree66120ab9b702bd12df7a5186785c0c15f9305b85 /wizards/com/sun/star/wizards/ui/ControlScroller.java
parent4004c372722ef2ba74d5760a39158cbb64e7b902 (diff)
java,wizards: remove unread fields
found by UCDetector Change-Id: Ia98606a98b998a224f821f2e673e788fb0ecf7d1
Diffstat (limited to 'wizards/com/sun/star/wizards/ui/ControlScroller.java')
-rw-r--r--wizards/com/sun/star/wizards/ui/ControlScroller.java8
1 files changed, 0 insertions, 8 deletions
diff --git a/wizards/com/sun/star/wizards/ui/ControlScroller.java b/wizards/com/sun/star/wizards/ui/ControlScroller.java
index fc4873abde7c..6f4db83dbd0b 100644
--- a/wizards/com/sun/star/wizards/ui/ControlScroller.java
+++ b/wizards/com/sun/star/wizards/ui/ControlScroller.java
@@ -28,7 +28,6 @@ public abstract class ControlScroller
{
protected WizardDialog CurUnoDialog;
- protected XMultiServiceFactory xMSF;
protected int ncurfieldcount;
protected int nblockincrement;
private int nlineincrement;
@@ -36,11 +35,8 @@ public abstract class ControlScroller
protected int ntotfieldcount;
XScrollBar xScrollBar;
protected ArrayList<PropertyValue[]> scrollfields;
- protected Integer ICompPosX;
protected int iCompPosX;
- protected Integer ICompPosY;
protected int iCompPosY;
- protected Integer ICompWidth;
protected int iCompWidth;
protected int iCompHeight;
protected int iStartPosY;
@@ -80,7 +76,6 @@ public abstract class ControlScroller
// TODO add parameters for tabindices and helpindex
protected ControlScroller(WizardDialog _CurUnoDialog, XMultiServiceFactory _xMSF, int _iStep, int _iCompPosX, int _iCompPosY, int _iCompWidth, int _nblockincrement, int _nlinedistance, int _firsthelpindex)
{
- this.xMSF = _xMSF;
this.nblockincrement = _nblockincrement;
this.CurUnoDialog = _CurUnoDialog;
this.iStep = _iStep;
@@ -90,10 +85,7 @@ public abstract class ControlScroller
IStep = Integer.valueOf(iStep);
this.iCompPosX = _iCompPosX;
this.iCompPosY = _iCompPosY;
- this.ICompPosX = Integer.valueOf(iCompPosX);
- this.ICompPosY = Integer.valueOf(iCompPosY);
this.iCompWidth = _iCompWidth;
- this.ICompWidth = Integer.valueOf(iCompWidth);
this.iCompHeight = 2 * SORELFIRSTPOSY + nblockincrement * linedistance;
iStartPosY = iCompPosY + SORELFIRSTPOSY;
int ScrollHeight = iCompHeight - 2;