diff options
author | Rüdiger Timm <rt@openoffice.org> | 2008-07-10 14:58:17 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2008-07-10 14:58:17 +0000 |
commit | e3dba1c134f4db0a2c4f97f600273dcf08c9007b (patch) | |
tree | f2dfc8e82021dc88072068c97fde5c0b691fb85c /wizards/com | |
parent | 1f2183a31199a1168aa7958a62c10326dad711ad (diff) |
INTEGRATION: CWS rptfix02 (1.75.6); FILE MERGED
2008/07/02 07:56:20 lla 1.75.6.1: #91244#
Diffstat (limited to 'wizards/com')
-rw-r--r-- | wizards/com/sun/star/wizards/report/ReportWizard.java | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/wizards/com/sun/star/wizards/report/ReportWizard.java b/wizards/com/sun/star/wizards/report/ReportWizard.java index 819ec391cf82..c1fdc8a0adff 100644 --- a/wizards/com/sun/star/wizards/report/ReportWizard.java +++ b/wizards/com/sun/star/wizards/report/ReportWizard.java @@ -8,7 +8,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: ReportWizard.java,v $ - * $Revision: 1.75 $ + * $Revision: 1.76 $ * * This file is part of OpenOffice.org. * @@ -583,7 +583,11 @@ public XComponent[] startReportWizard(XMultiServiceFactory _xMSF, PropertyValue[ // CurReportDocument = ReportTextImplementation.create(xMSF, m_oResource ); // } boolean bUseOld = false; - if (_bDebug == true && isReportBuilderInstalled() && !bUseOld) + if (!isReportBuilderInstalled()) + { + bUseOld = true; + } + if (_bDebug == true && !bUseOld) { try { |