summaryrefslogtreecommitdiff
path: root/wizards/com/sun/star/wizards/report/CallReportWizard.java
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2005-03-18 15:19:40 +0000
committerKurt Zenker <kz@openoffice.org>2005-03-18 15:19:40 +0000
commitfc2c5691565939cee1c66c2fc223075a87d07667 (patch)
tree0588d3bb84a437749a71b4e8b1e63143289bf7d0 /wizards/com/sun/star/wizards/report/CallReportWizard.java
parentf82877942885d9e5f0ea9bb597bee6badeea08ba (diff)
INTEGRATION: CWS dbwizard4 (1.17.50); FILE MERGED
2005/03/17 16:54:58 bc 1.17.50.1: #i44562# Several changes
Diffstat (limited to 'wizards/com/sun/star/wizards/report/CallReportWizard.java')
-rw-r--r--wizards/com/sun/star/wizards/report/CallReportWizard.java28
1 files changed, 14 insertions, 14 deletions
diff --git a/wizards/com/sun/star/wizards/report/CallReportWizard.java b/wizards/com/sun/star/wizards/report/CallReportWizard.java
index 5f509a7e3dfa..4267ed5df7c4 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.17 $
+ * $Revision: 1.18 $
*
- * last change: $Author: hr $ $Date: 2004-08-02 17:20:00 $
+ * last change: $Author: kz $ $Date: 2005-03-18 16:19:40 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -147,19 +147,19 @@ public class CallReportWizard {
bWizardstartedalready = false;
}
else if (sEvent.compareTo("fill") == 0){
- Dataimport CurDataimport = new Dataimport(xmultiservicefactory);
- XTextDocument xTextDocument = null;
- if ( databaseproperties != null )
- {
- for( int i=0;i < databaseproperties.length;++i)
- {
- if ( databaseproperties[i].Name.equals("TextDocument") )
- xTextDocument = (XTextDocument) UnoRuntime.queryInterface(XTextDocument.class, databaseproperties[i].Value);
+ Dataimport CurDataimport = new Dataimport(xmultiservicefactory);
+ XTextDocument xTextDocument = null;
+ if ( databaseproperties != null )
+ {
+ for( int i=0;i < databaseproperties.length;++i)
+ {
+ if ( databaseproperties[i].Name.equals("TextDocument") )
+ xTextDocument = (XTextDocument) UnoRuntime.queryInterface(XTextDocument.class, databaseproperties[i].Value);
- }
- if ( xTextDocument != null )
- CurDataimport.createReport(xmultiservicefactory,xTextDocument);
- }
+ }
+ if ( xTextDocument != null )
+ CurDataimport.createReport(xmultiservicefactory,xTextDocument,databaseproperties);
+ }
}
}
catch( Exception exception ){