diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2005-03-08 14:41:38 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2005-03-08 14:41:38 +0000 |
commit | 3ddb5f80ff726fdc9753c7ad2cd7b59a1baa6ee6 (patch) | |
tree | 2e3583096f5dc2315616548087360f1eaaf8cd82 /wizards | |
parent | 177f083f7e6d2d8e84a5b24cf9b4b94bad4e387f (diff) |
INTEGRATION: CWS toolkit01 (1.58.50); FILE MERGED
2005/03/01 16:34:01 bc 1.58.50.4: #43808# new hids for Sorting component added
2005/02/28 12:28:33 bc 1.58.50.3: #i37478# repainting problems in Webwizard and ReportWizard addressed
2005/02/25 12:03:51 bc 1.58.50.2: RESYNC: (1.58-1.59); FILE MERGED
2005/02/23 17:38:42 bc 1.58.50.1: ##several changes in Webwizard
Diffstat (limited to 'wizards')
-rw-r--r-- | wizards/com/sun/star/wizards/report/ReportWizard.java | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/wizards/com/sun/star/wizards/report/ReportWizard.java b/wizards/com/sun/star/wizards/report/ReportWizard.java index 7dc11d77ab4a..9db19ceb3f87 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.59 $ + * $Revision: 1.60 $ * - * last change: $Author: vg $ $Date: 2005-02-21 14:00:03 $ + * last change: $Author: vg $ $Date: 2005-03-08 15:41:38 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -64,8 +64,10 @@ import java.util.Vector; import com.sun.star.awt.TextEvent; import com.sun.star.awt.VclWindowPeerAttribute; +import com.sun.star.awt.XFixedText; import com.sun.star.awt.XTextListener; import com.sun.star.beans.PropertyValue; +import com.sun.star.awt.XReschedule; import com.sun.star.beans.UnknownPropertyException; import com.sun.star.lang.EventObject; import com.sun.star.lang.WrappedTargetException; @@ -73,6 +75,7 @@ import com.sun.star.lang.XMultiServiceFactory; import com.sun.star.sdb.CommandType; import com.sun.star.sdbc.SQLException; import com.sun.star.uno.AnyConverter; +import com.sun.star.uno.UnoRuntime; import com.sun.star.wizards.common.*; import com.sun.star.wizards.document.OfficeDocument; import com.sun.star.wizards.ui.*; @@ -282,7 +285,7 @@ public class ReportWizard extends WizardDialog implements XTextListener, XComple CurReportDocument.xProgressBar.setValue(50); CurGroupFieldHandler = new GroupFieldHandler(CurReportDocument, this); CurReportDocument.xProgressBar.setValue(60); - CurSortingComponent = new SortingComponent(this, SOSORTPAGE, 95, 30, 210, 34345); + CurSortingComponent = new SortingComponent(this, SOSORTPAGE, 95, 30, 210, 34346); CurReportDocument.xProgressBar.setValue(70); CurReportLayouter = new ReportLayouter(CurReportDocument, this); CurReportDocument.xProgressBar.setValue(80); @@ -543,4 +546,4 @@ public class ReportWizard extends WizardDialog implements XTextListener, XComple public void moveItemUp(String item){ } } -}
\ No newline at end of file +} |