A few LaTeX bugfixes

git-svn-id: svn://svn.code.sf.net/p/writer2latex/code/trunk@169 f0f2a975-2e09-46c8-9428-3b39399b9f3c
This commit is contained in:
henrikjust 2014-09-04 17:47:49 +00:00
parent 74d7599b11
commit a336023983
11 changed files with 99 additions and 42 deletions

View file

@ -62,10 +62,10 @@ public class BinaryGraphicsDocument implements OutputFile {
* @param sFileExtension the file extension
* @param sMimeType the MIME type of the document
*/
public BinaryGraphicsDocument(String name, String sFileExtension, String sMimeType) {
public BinaryGraphicsDocument(String sName, String sFileExtension, String sMimeType) {
this.sFileExtension = sFileExtension;
this.sMimeType = sMimeType;
sFileName = Misc.trimDocumentName(name, sFileExtension);
sFileName = Misc.trimDocumentName(sName, sFileExtension);
}
/** Set image contents to a byte array

View file

@ -72,7 +72,7 @@ public final class ImageConverter {
/** Construct a new <code>ImageConverter</code> referring to a specific document
*
* @param doc the office document used
* @param ofr the office reader to use
* @param bExtractEPS set true if EPS content should be extracted from SVM files
*/
public ImageConverter(OfficeReader ofr, boolean bDestructive, boolean bExtractEPS) {