summaryrefslogtreecommitdiff
path: root/wizards/com/sun/star/wizards/report/CallReportWizard.java
diff options
context:
space:
mode:
authorBehrend Cornelius <bc@openoffice.org>2002-08-12 14:54:01 +0000
committerBehrend Cornelius <bc@openoffice.org>2002-08-12 14:54:01 +0000
commit455f361eab684f508345984d4304239a6d7e983e (patch)
tree808d4a566f7299fab4800ac4c812f3b683183ca6 /wizards/com/sun/star/wizards/report/CallReportWizard.java
parente44b98eef632907ded3c3e9c6bd30a06fde1d0b4 (diff)
#100384# Several changes
Diffstat (limited to 'wizards/com/sun/star/wizards/report/CallReportWizard.java')
-rw-r--r--wizards/com/sun/star/wizards/report/CallReportWizard.java13
1 files changed, 8 insertions, 5 deletions
diff --git a/wizards/com/sun/star/wizards/report/CallReportWizard.java b/wizards/com/sun/star/wizards/report/CallReportWizard.java
index 9465fd03570b..d5c725a778cc 100644
--- a/wizards/com/sun/star/wizards/report/CallReportWizard.java
+++ b/wizards/com/sun/star/wizards/report/CallReportWizard.java
@@ -2,9 +2,9 @@
*
* $RCSfile: CallReportWizard.java,v $
*
- * $Revision: 1.13 $
+ * $Revision: 1.14 $
*
- * last change: $Author: bc $ $Date: 2002-07-19 10:32:03 $
+ * last change: $Author: bc $ $Date: 2002-08-12 15:54:00 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -188,10 +188,12 @@ public class CallReportWizard {
try{
XComponentLoader xcomponentloader = (XComponentLoader) UnoRuntime.queryInterface(XComponentLoader.class, xmultiservicefactory.createInstance("com.sun.star.frame.Desktop"));
if (sEvent.compareTo("start") == 0) {
- ReportWizard.startReportWizard(xmultiservicefactory, null);
+ ReportWizard CurReportWizard = new ReportWizard();
+ CurReportWizard.startReportWizard(xmultiservicefactory, null);
}
else if (sEvent.compareTo("fill") == 0){
- Dataimport.createReport(xmultiservicefactory);
+ Dataimport CurDataimport = new Dataimport();
+ CurDataimport.createReport(xmultiservicefactory);
}
}
catch( Exception exception ){
@@ -216,7 +218,8 @@ public class CallReportWizard {
*/
public void initialize(Object[] object) throws com.sun.star.uno.Exception
{
- ReportWizard.startReportWizard(xmultiservicefactory,object);
+ ReportWizard CurReportWizard = new ReportWizard();
+ CurReportWizard.startReportWizard(xmultiservicefactory,object);
// xmultiservicefactory = (XMultiservicefactory) UnoRuntime.queryInterface(XMultiServiceFactory.class, object[0]);
}