summaryrefslogtreecommitdiff
path: root/wizards
diff options
context:
space:
mode:
authorBehrend Cornelius <bc@openoffice.org>2002-09-13 07:58:40 +0000
committerBehrend Cornelius <bc@openoffice.org>2002-09-13 07:58:40 +0000
commit19f56c90e197e3b6a484a64d7579f609dba096ec (patch)
tree3b3e8f04eb35854c0af0a8105c6ef16e94091be8 /wizards
parente32158bf7b9d555303cadf925a0e109f74f993b1 (diff)
#100395# subsequential removal of GroupFields now possible
Diffstat (limited to 'wizards')
-rw-r--r--wizards/com/sun/star/wizards/report/Dataimport.java6
-rw-r--r--wizards/com/sun/star/wizards/report/ReportWizard.java6
2 files changed, 7 insertions, 5 deletions
diff --git a/wizards/com/sun/star/wizards/report/Dataimport.java b/wizards/com/sun/star/wizards/report/Dataimport.java
index 0b25ee63f2bb..7c59618d4ac8 100644
--- a/wizards/com/sun/star/wizards/report/Dataimport.java
+++ b/wizards/com/sun/star/wizards/report/Dataimport.java
@@ -2,9 +2,9 @@
*
* $RCSfile: Dataimport.java,v $
*
- * $Revision: 1.11 $
+ * $Revision: 1.12 $
*
- * last change: $Author: bc $ $Date: 2002-09-13 07:52:26 $
+ * last change: $Author: bc $ $Date: 2002-09-13 08:58:40 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -251,7 +251,6 @@ public class Dataimport extends ReportWizard{
dialog = x;
}*/
Thread ProgressThread = new Thread(new Runnable() {
-
public void run(){
try{
if (reconnectToDatabase(xMSF, CurReportDocument)){
@@ -267,6 +266,7 @@ public class Dataimport extends ReportWizard{
CurUNOProgressDialog.xComponent.dispose();
}
});
+
ProgressThread.start();
// try {
// ProgressThread.join();
diff --git a/wizards/com/sun/star/wizards/report/ReportWizard.java b/wizards/com/sun/star/wizards/report/ReportWizard.java
index 6645a3829439..132ef4ff3612 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.35 $
+ * $Revision: 1.36 $
*
- * last change: $Author: bc $ $Date: 2002-09-13 07:52:26 $
+ * last change: $Author: bc $ $Date: 2002-09-13 08:58:40 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -1144,6 +1144,8 @@ public class ReportWizard {
CurUNODialog.assignPropertyToDialogControl("lstGroup", "StringItemList", CurDBMetaData.FieldNames);
xSelGroupListBox.removeItems((short) 0, xSelGroupListBox.getItemCount());
GroupFieldVector = new java.util.Vector(CurDBMetaData.FieldNames.length);
+ CurReportDocument.GroupFormatVector = new java.util.Vector();
+
}
}
catch( Exception exception ){