Commit ab0dd4fa authored by Andreas Tille's avatar Andreas Tille
Browse files

New upstream version 0.0+20180317

parent 1fe83842
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
/**
 * EPSExportType.java 
 * Copyright (C) 2017 Daniel H. Huson
 * Copyright (C) 2018 Daniel H. Huson
 *
 * (Some files contain contributions from other authors, who are then mentioned separately.)
 *
@@ -107,9 +107,9 @@ public class EPSExportType extends FileFilter implements ExportGraphicType {
     * @throws IOException
     */
    public void writeToFile(File file, final JPanel imagePanel, JScrollPane imageScrollPane, boolean showWholeImage) throws IOException {
        FileOutputStream fos = new FileOutputStream(file);
        try (FileOutputStream fos = new FileOutputStream(file)) {
        stream(imagePanel, imageScrollPane, showWholeImage, fos);
        fos.close();
        }
    }

    /**
+1 −1
Original line number Diff line number Diff line
/**
 * EPSGraphics.java 
 * Copyright (C) 2017 Daniel H. Huson
 * Copyright (C) 2018 Daniel H. Huson
 *
 * (Some files contain contributions from other authors, who are then mentioned separately.)
 *
+1 −1
Original line number Diff line number Diff line
/**
 * ExportGraphicType.java 
 * Copyright (C) 2017 Daniel H. Huson
 * Copyright (C) 2018 Daniel H. Huson
 *
 * (Some files contain contributions from other authors, who are then mentioned separately.)
 *
+1 −1
Original line number Diff line number Diff line
/**
 * ExportImageDialog.java 
 * Copyright (C) 2017 Daniel H. Huson
 * Copyright (C) 2018 Daniel H. Huson
 *
 * (Some files contain contributions from other authors, who are then mentioned separately.)
 *
+1 −1
Original line number Diff line number Diff line
/**
 * ExportManager.java 
 * Copyright (C) 2017 Daniel H. Huson
 * Copyright (C) 2018 Daniel H. Huson
 *
 * (Some files contain contributions from other authors, who are then mentioned separately.)
 *
Loading