summaryrefslogtreecommitdiff
path: root/wizards/com/sun/star/wizards
diff options
context:
space:
mode:
authorBehrend Cornelius <bc@openoffice.org>2002-12-13 08:16:59 +0000
committerBehrend Cornelius <bc@openoffice.org>2002-12-13 08:16:59 +0000
commitd389e175df5cfe318d75ab16da94f43ba1e6fceb (patch)
treea27389df2561a0664ba0d368ce4ddc6a84ae3349 /wizards/com/sun/star/wizards
parentc0d9a329d3879ece3b949ee9c17a2c6f78f13e08 (diff)
#105583# InsertTextSection Method improved
Diffstat (limited to 'wizards/com/sun/star/wizards')
-rw-r--r--wizards/com/sun/star/wizards/report/ReportWizard.java7
1 files changed, 5 insertions, 2 deletions
diff --git a/wizards/com/sun/star/wizards/report/ReportWizard.java b/wizards/com/sun/star/wizards/report/ReportWizard.java
index 1e9f4e6d66c9..f127c1cc5638 100644
--- a/wizards/com/sun/star/wizards/report/ReportWizard.java
+++ b/wizards/com/sun/star/wizards/report/ReportWizard.java
@@ -2,9 +2,9 @@
*
* $RCSfile: ReportWizard.java,v $
*
- * $Revision: 1.47 $
+ * $Revision: 1.48 $
*
- * last change: $Author: bc $ $Date: 2002-12-11 17:40:48 $
+ * last change: $Author: bc $ $Date: 2002-12-13 09:16:59 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -1415,11 +1415,14 @@ public class ReportWizard {
XWindow xWindow = (XWindow) UnoRuntime.queryInterface(XWindow.class, xDBListBox);
CurDBMetaData.DataSourceName = (String) Tools.getPropertyValueFromAny(CurPropertyValue, "DataSourceName");
+ System.out.println(CurDBMetaData.DataSourceName);
if (CurDBMetaData.DataSourceName != null){
if (CurDBMetaData.DataSourceName.equals("") == false){
short iPos = (short) Tools.FieldInList(DatabaseNames, CurDBMetaData.DataSourceName);
+ System.out.println("ipos: " + iPos);
if (iPos > -1){
Short[] SelList = new Short[] {new Short(iPos)};
+ System.out.println("ipos Array: " + SelList[0]);
CurUNODialog.assignPropertyToDialogControl("lstDatabases", "SelectedItems", SelList);
xWindow = (XWindow) UnoRuntime.queryInterface(XWindow.class, xTableListBox);
}