diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2008-11-19 17:43:08 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2008-11-19 17:43:08 +0000 |
commit | 920580527a4de83b119f73bac1587e8884b375a5 (patch) | |
tree | d98e15caab9ff41bfcd9070937ade6b04897d66f | |
parent | f5789e990c3537e5bf453e93c07d6f822abc25b7 (diff) |
CWS-TOOLING: integrate CWS dba301a_DEV300
-rw-r--r-- | wizards/com/sun/star/wizards/report/ReportWizard.java | 6 |
1 files 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()) |