W2L apostrophes and single quotation marks

git-svn-id: svn://svn.code.sf.net/p/writer2latex/code/trunk@63 f0f2a975-2e09-46c8-9428-3b39399b9f3c
This commit is contained in:
henrikjust 2010-05-11 08:00:49 +00:00
parent d7f1b41599
commit 83f0c7d224
7 changed files with 54 additions and 49 deletions

View file

@ -16,11 +16,11 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
* Copyright: 2002-2007 by Henrik Just
* Copyright: 2002-2010 by Henrik Just
*
* All Rights Reserved.
*
* Version 0.5 (2007-07-24)
* Version 1.2 (2010-05-11)
*
*/
@ -37,7 +37,7 @@ class UnicodeCharacter implements Cloneable {
String sMath; // LaTeX representation in math mode
String sText; // LaTeX representation in text mode
int nFontencs; // Valid font encoding(s) for the text mode representation
boolean bDashes; // This character is represented by dashes (-,--,---)
char cProtect; // This character is represented by this character which may produce unwanted ligatures (-, ', `)
protected Object clone() {
UnicodeCharacter uc = new UnicodeCharacter();
@ -45,7 +45,7 @@ class UnicodeCharacter implements Cloneable {
uc.sMath = this.sMath;
uc.sText = this.sText;
uc.nFontencs = this.nFontencs;
uc.bDashes = this.bDashes;
uc.cProtect = this.cProtect;
return uc;
}
}