From 920580527a4de83b119f73bac1587e8884b375a5 Mon Sep 17 00:00:00 2001
From: Jens-Heiner Rechtien
Date: Wed, 19 Nov 2008 17:43:08 +0000
Subject: CWS-TOOLING: integrate CWS dba301a_DEV300
---
wizards/com/sun/star/wizards/report/ReportWizard.java | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/wizards/com/sun/star/wizards/report/ReportWizard.java b/wizards/com/sun/star/wizards/report/ReportWizard.java
index c1fdc8a0adff..3cb47b1aff0b 100644
--- a/wizards/com/sun/star/wizards/report/ReportWizard.java
+++ b/wizards/com/sun/star/wizards/report/ReportWizard.java
@@ -8,7 +8,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: ReportWizard.java,v $
- * $Revision: 1.76 $
+ * $Revision: 1.76.16.1 $
*
* This file is part of OpenOffice.org.
*
@@ -199,7 +199,9 @@ public class ReportWizard extends WizardDialog implements XTextListener, XComple
String aTableName = CurDBCommandFieldSelection.getSelectedCommandName();
// set all selected field names, DB Table name
// CurReportDocument.getRecordParser().initializeFieldColumns(aSelectedFieldNames, aTableName);
- CurReportDocument.initializeFieldColumns(com.sun.star.sdb.CommandType.TABLE, aTableName, aSelectedFieldNames);
+ int nType = CurDBCommandFieldSelection.getSelectedCommandType();
+ // nType = com.sun.star.sdb.CommandType.TABLE;
+ CurReportDocument.initializeFieldColumns(nType, aTableName, aSelectedFieldNames);
// CurReportDocument.initializeFieldColumns(aSelectedFieldNames, aSelectedCommandName);
// CurReportDocument.getRecordParser().setAllIncludedFieldNames(false);
if (CurDBCommandFieldSelection.isModified())
--
cgit