diff options
author | Sebastian Geerken <devnull@localhost> | 2012-11-27 18:24:02 +0100 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2012-11-27 18:24:02 +0100 |
commit | 69d1b0097e8991679ec3c0df1eea149ae41b27c9 (patch) | |
tree | 04cd685555e350fbe9069785ec86337106f6f7c5 | |
parent | f5539ea025a908a765e0e5eab52a125d7ae21b0e (diff) | |
parent | e8f8cc274d9ea3d940bfb453c2006f94959bb8ad (diff) |
Merge.
-rw-r--r-- | dw/textblock.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dw/textblock.cc b/dw/textblock.cc index f225a369..67d03449 100644 --- a/dw/textblock.cc +++ b/dw/textblock.cc @@ -982,9 +982,9 @@ void Textblock::drawWord (Line *line, int wordIndex1, int wordIndex2, if(drawHyphen) { // "\xe2\x80\x90" is an unconditional hyphen. - text[p++] = 0xe2; - text[p++] = 0x80; - text[p++] = 0x90; + text[p++] = '\xe2'; + text[p++] = '\x80'; + text[p++] = '\x90'; text[p++] = 0; } |