summaryrefslogtreecommitdiff
path: root/wizards
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2005-03-08 14:40:33 +0000
committerVladimir Glazounov <vg@openoffice.org>2005-03-08 14:40:33 +0000
commit177f083f7e6d2d8e84a5b24cf9b4b94bad4e387f (patch)
treea1781e089fd90a93d56676fb258d99ae17fea7e7 /wizards
parent30961f5d5f4bfbeabf010b7884bf7bf861103d5e (diff)
INTEGRATION: CWS toolkit01 (1.30.34); FILE MERGED
2005/03/01 16:27:04 bc 1.30.34.4: #43808#hids modified 2005/02/28 12:28:32 bc 1.30.34.3: #i37478# repainting problems in Webwizard and ReportWizard addressed 2005/02/25 12:02:37 bc 1.30.34.2: RESYNC: (1.30-1.31); FILE MERGED 2005/02/23 17:38:40 bc 1.30.34.1: ##several changes in Webwizard
Diffstat (limited to 'wizards')
-rw-r--r--wizards/com/sun/star/wizards/report/Dataimport.java8
1 files changed, 6 insertions, 2 deletions
diff --git a/wizards/com/sun/star/wizards/report/Dataimport.java b/wizards/com/sun/star/wizards/report/Dataimport.java
index fa5e31b12f2d..69770bc10a1e 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.31 $
+* $Revision: 1.32 $
*
-* last change: $Author: vg $ $Date: 2005-02-21 13:58:45 $
+* last change: $Author: vg $ $Date: 2005-03-08 15:40:33 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -84,6 +84,7 @@ import com.sun.star.wizards.document.*;
import com.sun.star.wizards.text.*;
import com.sun.star.wizards.common.InvalidQueryException;
import com.sun.star.uno.Exception;
+import com.sun.star.awt.XReschedule;
public class Dataimport extends UnoDialog2 implements com.sun.star.awt.XActionListener{ // extends ReportWizard
@@ -185,6 +186,7 @@ public class Dataimport extends UnoDialog2 implements com.sun.star.awt.XActionLi
createWindowPeer(CurReportDocument.xWindowPeer);
calculateDialogPosition(CurReportDocument.xFrame.getComponentWindow().getPosSize());
xWindow.setVisible(true);
+ xReschedule.reschedule();
return;
} catch (Exception exception) {
exception.printStackTrace(System.out);
@@ -231,6 +233,7 @@ public class Dataimport extends UnoDialog2 implements com.sun.star.awt.XActionLi
CurReportDocument.CurDBMetaData.dispose();
}
+
public void createReport(final XMultiServiceFactory xMSF,XTextDocument _textDocument) {
CurReportDocument = new ReportDocument(xMSF, _textDocument,false, oResource);
int iWidth = CurReportDocument.xFrame.getComponentWindow().getPosSize().Width;
@@ -404,6 +407,7 @@ public class Dataimport extends UnoDialog2 implements com.sun.star.awt.XActionLi
if (iCounter % 10 == 0) {
sProgressCurRecord = JavaTools.replaceSubString(sProgressBaseCurRecord, String.valueOf(iCounter), "<COUNT>");
setControlProperty("lblCurProgress", "Label", sProgressCurRecord);
+ super.xReschedule.reschedule();
}
} catch (java.lang.Exception jexception) {
jexception.printStackTrace(System.out);