summaryrefslogtreecommitdiff
path: root/wizards
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2006-04-07 12:51:54 +0000
committerVladimir Glazounov <vg@openoffice.org>2006-04-07 12:51:54 +0000
commit485660198949e07fcda9ab8b13af978d4e97b03d (patch)
tree682ef2b66516c949648b1748ba95be3e13a106b0 /wizards
parent729baedb55c0593d41c5000eea0e040e70ebb5f4 (diff)
INTEGRATION: CWS dbwizardpp3 (1.4.44); FILE MERGED
2006/03/29 15:30:09 bc 1.4.44.1: #i63772#failing of pdf export now raises error messagebox
Diffstat (limited to 'wizards')
-rw-r--r--wizards/com/sun/star/wizards/web/export/Exporter.java7
1 files changed, 4 insertions, 3 deletions
diff --git a/wizards/com/sun/star/wizards/web/export/Exporter.java b/wizards/com/sun/star/wizards/web/export/Exporter.java
index ea6a42f65691..57ca153a325e 100644
--- a/wizards/com/sun/star/wizards/web/export/Exporter.java
+++ b/wizards/com/sun/star/wizards/web/export/Exporter.java
@@ -4,9 +4,9 @@
*
* $RCSfile: Exporter.java,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: rt $ $Date: 2005-09-09 10:03:34 $
+ * last change: $Author: vg $ $Date: 2006-04-07 13:51:54 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -33,6 +33,7 @@
*
************************************************************************/package com.sun.star.wizards.web.export;
+import com.sun.star.io.IOException;
import com.sun.star.lang.XMultiServiceFactory;
import com.sun.star.wizards.ui.event.Task;
import com.sun.star.wizards.web.data.*;
@@ -59,7 +60,7 @@ public interface Exporter {
* (call task.advacne(true) ) 3 times, while exporting.
*
*/
- public boolean export(CGDocument source, String targetDirectory ,XMultiServiceFactory xmsf, Task task);
+ public boolean export(CGDocument source, String targetDirectory ,XMultiServiceFactory xmsf, Task task) throws IOException;
public void init(CGExporter exporter);
}