winhelp: Added proper RTF conversion for non breakable space and hyphen.

This commit is contained in:
Eric Pouech 2008-04-23 21:38:09 +02:00 committed by Alexandre Julliard
parent 0a3f4d1173
commit 1e5199af35
1 changed files with 9 additions and 2 deletions

View File

@ -1200,9 +1200,16 @@ static BOOL HLPFILE_BrowseParagraph(HLPFILE_PAGE* page, struct RtfData* rd, BYTE
break; break;
case 0x8B: case 0x8B:
case 0x8C: if (!HLPFILE_RtfAddControl(rd, "\\~")) goto done;
WINE_FIXME("NIY non-break space/hyphen\n");
format += 1; format += 1;
if (rd) /* FIXME: TEMP */ rd->char_pos++;
break;
case 0x8C:
if (!HLPFILE_RtfAddControl(rd, "\\_")) goto done;
/* FIXME: it could be that hypen is also in input stream !! */
format += 1;
if (rd) /* FIXME: TEMP */ rd->char_pos++;
break; break;
#if 0 #if 0