diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2005-03-08 14:50:38 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2005-03-08 14:50:38 +0000 |
commit | affa4011bf177a32316659a9e7b311097317e86f (patch) | |
tree | 4cf4eec114c4364cd4cb3a8ec04dc5c27828469e /wizards | |
parent | 632551354d3142fd292e2251390ca82b0b5f204d (diff) |
INTEGRATION: CWS toolkit01 (1.4.34); FILE MERGED
2005/02/28 12:28:43 bc 1.4.34.1: #i37478# repainting problems in Webwizard and ReportWizard addressed
Diffstat (limited to 'wizards')
-rw-r--r-- | wizards/com/sun/star/wizards/web/export/AbstractExporter.java | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/wizards/com/sun/star/wizards/web/export/AbstractExporter.java b/wizards/com/sun/star/wizards/web/export/AbstractExporter.java index 2197ea1b2160..cadb10ec2ee2 100644 --- a/wizards/com/sun/star/wizards/web/export/AbstractExporter.java +++ b/wizards/com/sun/star/wizards/web/export/AbstractExporter.java @@ -77,14 +77,7 @@ public abstract class AbstractExporter implements Exporter { props.put("Hidden", Boolean.TRUE); props.put("MacroExecutionMode", new Short(MacroExecMode.NEVER_EXECUTE)); props.put( "UpdateDocMode", new Short(UpdateDocMode.NO_UPDATE)); - document = ( - (XComponentLoader) UnoRuntime.queryInterface( - XComponentLoader.class, - desktop)).loadComponentFromURL( - doc.cp_URL, - "_blank", - 0, - props.getProperties()); + document = ((XComponentLoader) UnoRuntime.queryInterface(XComponentLoader.class, desktop)).loadComponentFromURL( doc.cp_URL, "_blank", 0, props.getProperties()); } catch (com.sun.star.lang.IllegalArgumentException iaex) { } //try to get the number of pages in the document; |