summaryrefslogtreecommitdiff
path: root/wizards/com/sun/star/wizards/report/RecordTable.java
diff options
context:
space:
mode:
Diffstat (limited to 'wizards/com/sun/star/wizards/report/RecordTable.java')
-rw-r--r--wizards/com/sun/star/wizards/report/RecordTable.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/wizards/com/sun/star/wizards/report/RecordTable.java b/wizards/com/sun/star/wizards/report/RecordTable.java
index 14c9c6baa711..cd40a35e9980 100644
--- a/wizards/com/sun/star/wizards/report/RecordTable.java
+++ b/wizards/com/sun/star/wizards/report/RecordTable.java
@@ -33,14 +33,14 @@ import com.sun.star.wizards.text.ViewHandler;
public class RecordTable
{
- String CurFieldName;
- String LabelDescription;
+
+
public XNamed xTableName;
public XCellRange xCellRange;
public XTextTable xTextTable;
private TextTableHandler oTextTableHandler;
public XTableColumns xTableColumns;
- private XTableRows xTableRows;
+
public RecordTable(TextTableHandler _oTextTableHandler)
{
@@ -72,7 +72,7 @@ public class RecordTable
xTableName = UnoRuntime.queryInterface(XNamed.class, xTextTable);
xTableName.setName(ReportTextDocument.TBLRECORDSECTION);
}
- xTableRows = xTextTable.getRows();
+ xTextTable.getRows();
xTableColumns = xTextTable.getColumns();
xCellRange = UnoRuntime.queryInterface(XCellRange.class, xTextTable);
}